1.0.0 • Published 9 years ago

ex-indexof v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

Extended-IndexOf

Extended indexOf for specific occurrence time.

var exIndexOf = require('ex-indexof');

exIndexOf('hello, world', 'o'); // => 4
exIndexOf('hello, world', 'o', 1); // => 8
exIndexOf('hello, world', 'o', 2); // => -1

// reverse direction
exIndexOf('hello, world', 'o', -1); // => 8
exIndexOf('hello, world', 'o', -2); // => 4
exIndexOf('hello, world', 'o', -3); // => -1

// substring
exIndexOf('too simple, too young, sometime naive', 'too', -2); // => 0