1.0.0 • Published 10 years ago

object-some v1.0.0

Weekly downloads
45
License
-
Repository
github
Last release
10 years ago

object-some

Build Status

Array.prototype.filter for objects.

Installation

npm install object-some

Usage

var assert = require('assert');
var objectSome = require('object-some');

var o1 = {
  a: 1,
  b: -1,
  c: 0,
  d: 42
};

objectSome(o1, function (n) {
  return n > 0;
}); // => `true`

objectSome(o1, function (n) {
  return n === 100'
}); // => `false`

API

objectSome(obj, iterator, this)

  • obj (object) - object to filter on
  • iterator (function, required) - iterator function
  • this (optional) - this for iterator

Iterates over obj, calls iterator(value, key, obj) with each item and returns true if it returns true when iterator returns true, false otherwise.