asd/asd-pc/node_modules/core-js/internals/not-a-regexp.js
愉快的大福 eb8378e551 init
2024-11-21 11:06:22 +08: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;
};