0.0.1 • Published 4 years ago

funkylog v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

FUNKYLOG - Make your console.logs look interactive!

Funkylog lets you add the delay between printing out the characters to the console.

Step 1: configure the delay and add optional randomization

Step 2: just pass in the string!

INSTALLATION

npm install --save funkylog

USAGE

import funkylog from 'funkylog';

const { log } = funkylog({ delay: 100, randomized: true });
log('Hello, Funky World!').then(...);
await log('Hello, Funky World!');