This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as ts from 'typescript' | |
import { Rules, RuleWalker, RuleFailure } from 'tslint' | |
function find<T>(collection: T[], predicate: (it: T) => boolean): T | null { | |
for (const item of collection) { | |
if (predicate(item)) { | |
return item | |
} | |
} | |
return null |