_.isMatch
  • References/JavaScript/Underscore/Object

isMatch_.isMatch(object, properties) Tells you if the keys and values in properties are contained in object.

2025-01-10 15:47:30
_.isDate
  • References/JavaScript/Underscore/Object

isDate_.isDate(object) Returns true if object is a Date.

2025-01-10 15:47:30
_.isRegExp
  • References/JavaScript/Underscore/Object

isRegExp_.isRegExp(object) Returns true if object is a RegExp.

2025-01-10 15:47:30
_.findKey
  • References/JavaScript/Underscore/Object

findKey_.findKey(object, predicate, [context]) Similar to _

2025-01-10 15:47:30
_.isNaN
  • References/JavaScript/Underscore/Object

isNaN_.isNaN(object) Returns true if object is NaN. Note: this is not the same as the native isNaN

2025-01-10 15:47:30
_.isNull
  • References/JavaScript/Underscore/Object

isNull_.isNull(object) Returns true if the value of object is null.

2025-01-10 15:47:30
_.has
  • References/JavaScript/Underscore/Object

has_.has(object, key) Does the object contain the given key? Identical to object.hasOwnProperty(key), but uses a safe reference

2025-01-10 15:47:30
_.pairs
  • References/JavaScript/Underscore/Object

pairs_.pairs(object) Convert an object into a list of [key, value] pairs.

2025-01-10 15:47:30
_.tap
  • References/JavaScript/Underscore/Object

tap_.tap(object, interceptor) Invokes interceptor with the object, and then returns object. The primary purpose

2025-01-10 15:47:30
_.isString
  • References/JavaScript/Underscore/Object

isString_.isString(object) Returns true if object is a String.

2025-01-10 15:47:30