echolog
v0.0.1
Published
A tiny wrapper around console.log that returns the values passed to it
Downloads
3
Readme
echolog
A tiny wrapper around console.log that returns the values passed to it
Installation
> yarn add echolog
Usage
const log = require('echolog');
log(Math.abs(-10));
// Outputs: "10" on the terminal
// returns 10
log("hello", "👏");
// Outputs: "hello 👏" on the terminal
// returns ["hello", "👏"]