Variables
Const inherit
inherit: (Anonymous function) = ( Object.create != null ?( target: any, superClass: Function ): void => {target.superClass = superClass;target.prototype = Object.create(superClass.prototype, {constructor: {value: target,enumerable: false,writable: true,configurable: true}});} :( target: any, superClass: Function ): void => {target.superClass = superClass;const TempClass: any = () => { /* DO NOTHING */ };TempClass.prototype = superClass.prototype;target.prototype = new TempClass();target.prototype.constructor = target;})
Const isArray
isArray: isArray = Array.isArray || (( target: any ): target is unknown[] => {return checkTag( target, "[object Array]" );})
Const isEqualObject
isEqualObject: (Anonymous function) = ( Object.keys != null ? ( a: any, b: any ): boolean => {const keys = Object.keys( a );const length = keys.length;if( length !== sizeObject( b ) ) {return false;}for( let i = 0; i < length; ++i ) {const key = keys[ i ];if( ! hasOwn( b, key ) || ! isEqual( a[ key ], b[ key ] ) ) {return false;}}return true;} : ( a: any, b: any ): boolean => {// For afor( const key in a ) {if( hasOwn( a, key ) ) {if( ! hasOwn( b, key ) || ! isEqual( a[ key ], b[ key ] ) ) {return false;}}}// For bfor( const key in b ) {if( hasOwn( b, key ) && ! hasOwn( a, key ) ) {return false;}}return true;})
Const isNaN
isNaN: isNaN = ( typeof Number.isNaN !== "undefined" ? Number.isNaN : ( target: any ): boolean => {return isNumber( target ) && target !== target;})
Const isPlainObject
isPlainObject: (Anonymous function) = (Object.getPrototypeOf != null ? ( target: any ): target is PlainObject => {if( target != null && checkType(target, "object") && checkTag(target, "[object Object]") ) {const prototype = Object.getPrototypeOf( target );return prototype == null || prototype === Object.prototype;}return false;} : ( target: any ): target is PlainObject<any> => {return ( target != null && checkType(target, "object") && checkTag(target, "[object Object]") );})
Const now
now: now = Date.now || (() => new Date().getTime())
Const sizeObject
sizeObject: (Anonymous function) = ( Object.keys != null ? ( target: any ): number => {return Object.keys( target ).length;} : ( target: any ): number => {let result = 0;for( const key in target ) {if( hasOwn( target, key ) ) {result += 1;}}return result;})