_.clone
  • References/JavaScript/Underscore/Object

clone_.clone(object) Create a shallow-copied clone of the provided plain object. Any nested objects or arrays will

2025-01-10 15:47:30
_.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
_.findKey
  • References/JavaScript/Underscore/Object

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

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

create_.create(prototype, props) Creates a new object with the given prototype, optionally attaching props as own properties

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
_.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
_.pairs
  • References/JavaScript/Underscore/Object

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

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

isObject_.isObject(value) Returns true if value is an Object. Note that JavaScript arrays and functions are objects

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