angular.Module.config()

config(configFn); Use this method to register work which needs to be performed on module loading. For more about how to configure services, see Provider Recipe. Parameters Param Type Details configFn Function Execute this function on module load. Useful for service configuration.

angular.merge

function in module ng Deeply extends the destination object dst by copying own enumerable properties from the src object(s) to dst. You can specify multiple src objects. If you want to preserve original objects, you can do so by passing an empty object as the target: var object = angular.merge({}, object1, object2). Unlike extend(), merge() recursively descends into object properties of source objects, performing a deep copy. Usage angular.merge(dst, src); Arguments Param Type Details d

angular.isUndefined

function in module ng Determines if a reference is undefined. Usage angular.isUndefined(value); Arguments Param Type Details value * Reference to check. Returns boolean True if value is undefined.

angular.module

function in module ng The angular.module is a global place for creating, registering and retrieving Angular modules. All modules (angular core or 3rd party) that should be available to an application must be registered using this mechanism. Passing one argument retrieves an existing angular.Module, whereas passing more than one argument creates a new angular.Module Module A module is a collection of services, directives, controllers, filters, and configuration information. angular.module i

angular.isObject

function in module ng Determines if a reference is an Object. Unlike typeof in JavaScript, nulls are not considered to be objects. Note that JavaScript arrays are objects. Usage angular.isObject(value); Arguments Param Type Details value * Reference to check. Returns boolean True if value is an Object but not null.

angular.isString

function in module ng Determines if a reference is a String. Usage angular.isString(value); Arguments Param Type Details value * Reference to check. Returns boolean True if value is a String.

angular.isFunction

function in module ng Determines if a reference is a Function. Usage angular.isFunction(value); Arguments Param Type Details value * Reference to check. Returns boolean True if value is a Function.

angular.isElement

function in module ng Determines if a reference is a DOM element (or wrapped jQuery element). Usage angular.isElement(value); Arguments Param Type Details value * Reference to check. Returns boolean True if value is a DOM element (or wrapped jQuery element).

angular.isDefined

function in module ng Determines if a reference is defined. Usage angular.isDefined(value); Arguments Param Type Details value * Reference to check. Returns boolean True if value is defined.

angular.isNumber

function in module ng Determines if a reference is a Number. This includes the "special" numbers NaN, +Infinity and -Infinity. If you wish to exclude these then you can use the native `isFinite' method. Usage angular.isNumber(value); Arguments Param Type Details value * Reference to check. Returns boolean True if value is a Number.