Functions
Const arrayEquals
arrayEquals( arr1: any [] , arr2: any [] ) : boolean
Parameters
Returns boolean
Do the arrays have identical elements in order?
Const flipOperator
flipOperator( operator: string ) : string
Parameters
Returns string
Const someAndOther
someAndOther( el1: any , el2: any , cb1: function , cb2: function ) : boolean
Parameters
el1: any
el2: any
cb1: function
Parameters
Returns boolean
cb2: function
Parameters
Returns boolean
Returns boolean
Return true iff there are two pairs of functions and elements
such that both pairs return true.
Legend
Module
Object literal
Variable
Function
Function with type parameter
Index signature
Type alias
Enumeration
Enumeration member
Property
Method
Interface
Interface with type parameter
Constructor
Property
Method
Index signature
Class
Class with type parameter
Constructor
Property
Method
Accessor
Index signature
Inherited constructor
Inherited property
Inherited method
Inherited accessor
Protected property
Protected method
Protected accessor
Private property
Private method
Private accessor
Static property
Static method
Returns true iff the two input arrays have strictly equal elements in the same order. (If two corresponding elements are both arrays, we will recurse on the arrays, so this function works for nested arrays.)