UNPKG

194 BJavaScriptView Raw
1var isRegExp = require('../internals/is-regexp');
2
3module.exports = function (it) {
4 if (isRegExp(it)) {
5 throw TypeError("The method doesn't accept regular expressions");
6 } return it;
7};