1.0.1 • Published 3 years ago

printnln v1.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
3 years ago

What is this?

This is a small, lightweight function that allows you to run console.log by using println. It has the option to also choose spacing between lines for simplicity in reading.

Installation

npm i printnln --save

Then...

const printnln = require("printnln");

How to use it?

All you do it run the function like this, with the arguments you want:

printnln("text", "text");
///output
text;
text;

You can also add a number as the beginning argument to choose the line spacing:

printnln(2, "text", "text");
//output
text;

text;
1.0.1

3 years ago

1.0.0

3 years ago