NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/core-js-pure/internals/not-a-regexp.js
2023-09-14 14:47:11 +08:00

8 lines
194 B
Java

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