MCPcopy
hub / github.com/infinitered/ignite / Array

Interface Array

boilerplate/types/lib.es5.d.ts:18–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16type Falsy = false | 0 | "" | null | undefined
17
18interface Array<T> {
19 /**
20 * Returns the elements of an array that meet the condition specified in a callback function.
21 * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
22 * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
23 */
24 filter<S extends T>(predicate: BooleanConstructor, thisArg?: any): Exclude<S, Falsy>[]
25}

Callers 8

copyBoilerplateFunction · 0.80
targetsFunction · 0.80
removeCurrentLineFunction · 0.80
removeNextLineFunction · 0.80
getEmptyDirPathsFunction · 0.80
updateFilesFunction · 0.80
updateGeneratorsFunction · 0.80
installGeneratorsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected