Returns the string of the specified Base64-encoded string.
decoded string
Returns the bound function of the specified function.
the this binding of the target function
a bound function
Returns Base64-encoded string of the specified string.
string to be decoded
encoded string
Returns a shallow clone of the specified target. This method only clones arrays and plain objects in the specified target. Everything else is just copied to the cloned target from the specified target as is.
a clone target
a cloned target
Returns a clone of the specified target. This method only clones arrays and plain objects in the specified target. Everything else is just copied to the cloned target from the specified target as is.
a clone target
a cloned target
Iterates over elements of the specified target, calling the iteratee for each element. The iteratee is bound to the thisArg and invoked with three arguments: value, field name/index and the target. The iteratee may exit iteration early by explicitly returning false.
a target collection
the function called per iteration
the this binding of the iteratee
the specified target
Iterates over elements of the specified target from right to left, calling the iteratee for each element. The iteratee is bound to the thisArg and invoked with three arguments: value, index and this list. The iteratee may exit iteration early by explicitly returning false.
a target collection
the function called per iteration
the this binding of the iteratee
the specified target
Escapes the characters "&", "<", ">", '"' and "'" in the specified target and returns the escaped target.
escaped target
Returns true if the specified target has an own property of the specified name.
true if the specified target has an own property of the specified name
Returns true if the specified target is an array.
a test target
true if the specified target is an array
Returns true if the specified target is array-like.
a test target
true if the specified target is array-like
Returns true if the specified target is a boolean.
a test target
true if the specified target is a boolean
Returns true if the specified target is empty.
a test target
true if the specified target is empty
Returns true if the specified targets are equal to each other.
a test target
a test target
true if the specified targets are equal to each other
Returns true if the specified target is a function.
a test target
true if the specified target is a function
Returns true if the specified target is a NaN.
a test target
true if the specified target is a NaN
Returns true if the specified target is a number.
a test target
true if the specified target is a number
Returns true if the specified target is a plain object.
a test target
true if the specified target is a plain object
Returns true if the specified target is a string.
a test target
true if the specified target is a string
Returns true if the specified target is a thenable.
a test target
true if the specified target is a thenable
Recursively merges properties of source objects into the destination object. Undefined source properties are skipped if a corresponding destination property exits.
the destination object
Returns UNIX milliseconds.
UNIX milliseconds
Registers the specified instance at the specified path.
Setting the third argument lowerCase
to true,
the first character of the last part of the dot-separated path is changed to the lower case.
// Registers `this` instance to wcardinal.util.Util
util.register( "wcardinal.util.Util", this );
// Registers `this` instance to wcardinal.util.util
util.register( "wcardinal.util.Util", this, true );
the dot-separated path
the instance to be registered
true for making the first character of the last part of the dot-separated path
a root object at which the specified instance being registered
the registered instance
Returns the size of the specified target.
an inspection target
the size of the specified target
Returns the lowest index at which the specified value should be inserted into the specified target in order to maintain its sort order.
a type of value
a sorted array
a test value
the lowest index at which the specified value should be inserted
Generated using TypeDoc
Provides utility methods.