1.0.4 • Published 2 years ago
shortlog v1.0.4
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;