Variables
isArray: isArray = Array.isArray
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:23
isDate: function = <any> ((x: any) => toStr.call(x) === '[object Date]')
Type declaration
Parameters
Returns boolean
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:24
isDefined: function = not(isUndefined)
Type declaration
Parameters
Returns boolean
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:16
isFunction: function = <any> tis('function')
Type declaration
Parameters
Returns boolean
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:19
isNullOrUndefined: function = or(isNull, isUndefined)
Type declaration
Parameters
Returns boolean
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:18
isNumber: function = <any> tis('number')
Type declaration
Parameters
Returns boolean
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:20
isPromise: function = <(x: any) => x is Promise<any>> and(isObject, pipe(prop('then'), isFunction))
Type declaration
Parameters
Returns boolean
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:47
isRegExp: function = <any> ((x: any) => toStr.call(x) === '[object RegExp]')
Type declaration
Parameters
Returns boolean
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:25
isState: function = StateObject.isState
Type declaration
Parameters
Returns boolean
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:26
isString: function = <(x: any) => x is string> tis('string')
Type declaration
Parameters
Returns boolean
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:21
isUndefined: (Anonymous function) = tis('undefined')
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:15
toStr: toString = Object.prototype.toString
Defined in .downstream_cache/@uirouter/core/src/common/predicates.ts:13
Predicates
These predicates return true/false based on the input. Although these functions are exported, they are subject to change without notice.