new Utils()
- Source:
Classes
Methods
-
<static> extend(deep, target) → {object}
-
This is a slightly modified version of http://api.jquery.com/jQuery.extend/
Parameters:
Name Type Description deep
boolean Perform a deep copy?
target
object The target object to copy to.
- Source:
Returns:
The extended object.
- Type
- object
-
<static> isPlainObject(obj) → {boolean}
-
This is a slightly modified version of jQuery.isPlainObject. A plain object is an object whose internal class property is [object Object].
Parameters:
Name Type Description obj
object The object to inspect.
- Source:
Returns:
- true if the object is plain, otherwise false.
- Type
- boolean
-
<static> pad(str, len, pad, dir) → {string}
-
Javascript string pad http://www.webtoolkit.info/. pad = the string to pad it out with (defaults to a space)<br> dir = 1 (left), 2 (right), 3 (both)
Parameters:
Name Type Argument Default Description str
string The target string.
len
number Description.
pad
number the string to pad it out with (defaults to a space).
dir
number <optional>
3 the direction dir = 1 (left), 2 (right), 3 (both).
- Source:
Returns:
- Type
- string