Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

log-lite

leavesdrift17ISC1.0.2

just a console.log for lazy person

console

readme

Installation

npm install --save log-lite

npm install --save-dev log-lite

Utilisation

const {log} = require('log-lite')

log('a','b','c','d')

/*
 a
 b
 c
 d
 */