class Object
Description
Extensions to the built-in Object
object.
Methods
Class methods
-
extendAll #
Object.extendAll(destination[, source...]) ⇒ Object
-
destination
(Object
) – The object to receive the new properties. -
source
(Object
) – One or more object whose properties will be duplicated.
Copies all properties from each of the sources to the destination object. Returns the destination object.
-