blob: 338b4dda4e2ee3c977f7613e6c6adf2208cfd24e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
"use strict";
module.exports = function strpbrk(haystack, charList) {
// discuss at: http://locutus.io/php/strpbrk/
// original by: Alfonso Jimenez (http://www.alfonsojimenez.com)
// bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)
// revised by: Christoph
// improved by: Brett Zamir (http://brett-zamir.me)
// example 1: strpbrk('This is a Simple text.', 'is')
// returns 1: 'is is a Simple text.'
for (var i = 0, len = haystack.length; i < len; ++i) {
if (charList.indexOf(haystack.charAt(i)) >= 0) {
return haystack.slice(i);
}
}
return false;
};
//# sourceMappingURL=strpbrk.js.map
|