Package Exports
- match-at
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (match-at) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
match-at 
Introduction
Like String.prototype.match if it only checked the regex at the given index instead of searching the entire string.
matchAt(/world/, 'hello world', 6); // ['world']
matchAt(/world/, 'hello world', 0); // nullAlmost like 'hello world'.slice(i).match(/^world/) except the resulting match object's .index property corresponds to the original string, and it doesn't actually slice the string. Most engines optimize taking a substring so this probably isn't particularly valuable in practice, but it was an entertaining exercise and could be useful if you reminisce about these semantics.
License
MIT.