UNPKG
shortstop-regex
Version:
latest (0.0.1)
0.0.1
shortstop handler to support regular expressions
shortstop-regex
/
index.js
8 lines
(6 loc)
•
124 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
;
module
.
exports
=
function
(
flags
) {
return
function
(
regex
) {
return
new
RegExp
(regex, flags); }; };