There was an error while loading. Please reload this page.
Get first character that satisfies the test, like Array.find().
Array.find()
const find = require('@extra-string/find'); // find(<string>, <testFn>, [thisArg]) find('badd0g', (v) => v>'f'); // 'g' find('badcab', (v) => v>'f'); // undefined find('', (v) => v>'f'); // undefined