Skip to content

Instantly share code, notes, and snippets.

@etoxin
Created December 2, 2016 02:23
Show Gist options
  • Select an option

  • Save etoxin/aefef20d3cb7366f32f1d33ec91b6972 to your computer and use it in GitHub Desktop.

Select an option

Save etoxin/aefef20d3cb7366f32f1d33ec91b6972 to your computer and use it in GitHub Desktop.
Lodash Conditional
_.chain(123)
.thru(function(num) {
return _.every([ // or _.some for any item
_.isNumber(num),
_.anotherCheck(num),
_.anotherCheck(num)
]);
})
.value();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment