Iterable interface for RegExp.prototype.exec()
Compatible with multiple other ES2015 features (e.g. spread operator
, Array.from()
, for..of
).
$ npm install --save iterable-regexp-exec
const iterableRegexpExec = require('iterable-regexp-exec');
const res = iterableRegexpExec(/[unicorns]/g, 'rainbows');
[...res].map(match => match[0]);
//=> ['r', 'i', 'n', 'o', 's']
Yields regexp.exec(string)
once per iteration.
Type: regexp
Type: string
MIT © Dmitriy Sobolev