s6g
v1.0.3
Published
do console.log() with just log()
Readme
shortLog
Do console.log() with just log()
Installation
npm i s6gor
npm i shortlogHow 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;