Files
old-kitabcitab-frontend/kitabcitab/node_modules/core-js-pure/internals/not-a-regexp.js
2022-12-27 12:05:56 +01:00

10 lines
224 B
JavaScript

var isRegExp = require('../internals/is-regexp');
var $TypeError = TypeError;
module.exports = function (it) {
if (isRegExp(it)) {
throw $TypeError("The method doesn't accept regular expressions");
} return it;
};