Skip to content

Print the intermediate value in a chain in lodash to console

License

Notifications You must be signed in to change notification settings

alanwei0/lodash.log

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Print the intermediate value in a chain in lodash to console

Resources

License

Stars

Watchers

Forks

Packages

No packages published