0.0.1 • Published 5 years ago

echolog v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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", "👏"]