UNPKG

@textback/notification-widget

Version:

TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.

8 lines 207 B
export default function find(array, predicate) { for (let i = 0; i < array.length; i++) { if (predicate(array[i], i, array)) { return array[i]; } } return undefined; }