uni-ticket-system/node_modules/core-js/internals/not-a-regexp.js

10 lines
224 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
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;
};