lodash.log

1.0.3 • Public • Published

lodash.log

Travis codecov npm-version license

Mix console.log into lodash, to print the intermediate value in a chain.

Other Features

  • TypeScript supported
  • Not print in production env

Install

$ npm install -S lodash.log

Usage

import _ from 'lodash';
// because this lib is a mixin of lodash, 
// so you must import it just after lodash,but prior to others at the beginning of the program
import 'lodash.log';
 
// directly
_.log('hello world'); // hello world
 
// in a chain
_.chain([1, 3, 5])
  .map(v => v * 2)
  .log('current array: ') // current array: [2, 6, 10]
  .map(v => Math.pow(v, 2))
  .value();

Readme

Keywords

none

Package Sidebar

Install

npm i lodash.log

Weekly Downloads

3

Version

1.0.3

License

MIT

Last publish

Collaborators

  • alanwei0