1.0.1 • Published 7 months ago

ljo v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

ljo

ljo( )

ljo() is a small JavaScript package that allows you to console log just once. This is particularly useful when you're console logging within a loop but only want the message to appear once.

Installation

You can install ljo using npm:

npm install ljo

Usage

The syntax for using ljo() is as follows:

ljo(id, message, color, backgroundColor)

Here’s an example of how to use ljo():

ljo(1,"hi","#ccc","#000")

In this example;

  • 1 is the ID of the log message.
  • "hi" is the message to be logged.
  • "#ccc" sets the font color.
  • "#000" sets the font background color.

If you use the same ID for another log message, ljo() will not log it again. This means that each unique ID will only be logged once.

If you didn't set font color or font background color, The default font color is "#13826D" and the default font background color is "#15221E".

Full example :

import { ljo } from "ljo";

for (let  i  =  0; i  <  5; i++) {

	ljo(1, "hi", "#ccc", "#000")
	console.log(i)
}
/* 
Output is :
hi
0
1
2
3
4

*/