shortlog
v1.0.4
Published
do console.log() with just log()
Downloads
2
Readme
shortLog
Do console.log() with just log()
Installation
npm i s6g
or
npm i shortlog
How to Use
const log = require("shortlog");
log("Hello from shortlog");
Below is the code in the shortlog index.js file
function log(val) {
return console.log(val);
}
module.exports = log;