blob: d3a77641da0f862bc995190bd1aa66c9f43743b6 [file] [log] [blame]
'use strict';
var isRegExp = require('./is-reg-exp');
module.exports = function (x) {
if (!isRegExp(x)) throw new TypeError(x + " is not a RegExp object");
return x;
};