do console.log() with just log()
npm install shortlogjs
npm i s6g
`
or
`js
npm i shortlog
`
$3
`js
const log = require("shortlog");
log("Hello from shortlog");
`
Below is the code in the shortlog index.js file
`js
function log(val) {
return console.log(val);
}
module.exports = log;
``