debian-mirror-gitlab/core-js/internals/not-a-regexp.js
2019-09-25 13:30:05 +05:30

7 lines
194 B
JavaScript

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