1.0.3 • Published 7 years ago

lodash.log v1.0.3

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

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();