array.ts
/**
* Determine whether the argument is an array.
*/
function isArray(item: any): item is Array<any> {
return item instanceof Object && item.constructor === Array;
}
export { isArray };
/**
* Determine whether the argument is an array.
*/
function isArray(item: any): item is Array<any> {
return item instanceof Object && item.constructor === Array;
}
export { isArray };
Date | Hash |
---|---|
2024-04-13 | 0c9b2c0e |
2024-04-01 | 110e0165 |
2024-03-31 | 02dca1b8 |
2024-03-31 | 692ce828 |
2024-03-31 | 9a544393 |