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