[Method] Returns a new object with the given object as the prototype chain
Object The prototype chain for the new object.
[Method] Iterate through an object and invoke the given callback function for each iteration
Object The object to iterate
Function The callback function.
Object The execution scope (this) of the callback function
[Method] Converts a query string back into an object
String The query string to decode.
Boolean Whether or not to recursively decode the string. This format is supported by PHP / Ruby on Rails servers and similar.
any
Object
[Method] Returns the first matching key corresponding to the given value
Object
Object The value to find
[Method] Gets all keys of the given object as an array
Object
Array<string>
String[] An array of keys from the object.
[Method] Gets the total number of this object s own properties
Object
number
Number size
[Method] Gets all values of the given object as an array
Object
Array<any>
Array An array of values from the object.
[Method] Merges any number of objects recursively without referencing them or their children
Object The first object into which to merge the others.
Object... One or more objects to be merged into the first.
any
Object The object that is created as a result of merging all the objects passed in.
[Method]
Object
[Method] Convert a name value pair to an array of objects with support for nested structures useful to construct query stri
String
Object
Boolean true to recursively encode any sub-objects.
Array<any>
Object[] Array of objects with name and value fields.
[Method] Takes an object and converts it to an encoded query string
Object The object to encode.
Boolean Whether or not to interpret the object in recursive format. (PHP / Ruby on Rails servers and similar).
string
String queryString