amis-rpc-design/node_modules/core-js/internals/not-a-regexp.js
2023-10-07 19:42:30 +08:00

11 lines
238 B
JavaScript

'use strict';
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;
};