Skip to content

s54a/shortLog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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;

Releases

No releases published

Packages

No packages published