log-helper-tutorial
v1.0.1
Published
An example package for a tutorial.
Downloads
6
Readme
Getting Started
npm install log-helper-tutorialQuick Start
const { log, shout, whisper } = require('log-helper-tutorial');
log('Hello World', { loudness: 'shout' });
// HELLO WORLD
log('Hello World', { loudness: 'whisper' });
// hello world
log('Hello World');
// Hello World