clone_.clone(object) Create a shallow-copied clone of the provided plain object. Any nested objects or arrays will
isMatch_.isMatch(object, properties) Tells you if the keys and values in properties are contained in object.
isDate_.isDate(object) Returns true if object is a Date.
findKey_.findKey(object, predicate, [context]) Similar to _
create_.create(prototype, props) Creates a new object with the given prototype, optionally attaching props as own properties
isString_.isString(object) Returns true if object is a String.
tap_.tap(object, interceptor) Invokes interceptor with the object, and then returns object. The primary purpose
pairs_.pairs(object) Convert an object into a list of [key, value] pairs.
isObject_.isObject(value) Returns true if value is an Object. Note that JavaScript arrays and functions are objects
isNull_.isNull(object) Returns true if the value of object is null.
Page 3 of 4