* Iterate through elements of collection and return all results of running the iterator function, with null and undefined values filtered out. * @param collection * @param fn * @return
(collection: any[], fn: (item: any, index: number) => any)
| 166 | * @return |
| 167 | */ |
| 168 | map(collection: any[], fn: (item: any, index: number) => any): any[]; |
| 169 | |
| 170 | /** |
| 171 | * Alias for the native JSON.parse method. |
no outgoing calls