mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 07:39:30 +08:00
7 lines
No EOL
263 B
Text
7 lines
No EOL
263 B
Text
function _newArrowCheck(innerThis, boundThis) {
|
|
if (innerThis !== boundThis) {
|
|
throw new TypeError("Cannot instantiate an arrow function");
|
|
}
|
|
}
|
|
|
|
module.exports = _newArrowCheck, module.exports.__esModule = true, module.exports["default"] = module.exports; |