mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 18:48:37 +00:00
9 lines
162 B
JavaScript
9 lines
162 B
JavaScript
|
"use strict";
|
||
|
|
||
|
var validRegExp = require("../../valid-reg-exp");
|
||
|
|
||
|
module.exports = function (string) {
|
||
|
validRegExp(this);
|
||
|
return String(string).match(this);
|
||
|
};
|