Array of RegExp.prototype.exec results
npm install @cush/execallReturns a new array of RegExp.prototype.exec matches.
Forked from https://github.com/eush77/regexp.execall
``js
const all = require('@cush/execall');
all(regexp, string); // => []
`
- Empty matches are excluded from the array.
- When regexp.global is false, the array will either have one match or none.string` is falsy, the array will always be empty.
- When