UNPKG
nunit-command
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.2
0.1.1
Node plugin for preparing NUnit commands
github.com/meilke/nunit-command
meilke/nunit-command
nunit-command
/
regex.js
9 lines
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
exports
.
matchAll
=
function
(
regex, text
) {
var
matches = [];
var
match = regex.
exec
(text);
while
(match !==
null
) { matches.
push
(match[
1
]); match = regex.
exec
(text); }
return
matches; };