Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FilterFunction

Function signature, for traversal methods.

type FilterFunction<T> = (
this: T,
i: number,
el: T,
) => boolean
;

§Type Parameters

§Type

§
(this: T, i: number, el: T) => boolean
[src]