mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 16:28:50 +00:00
6 lines
210 B
JavaScript
6 lines
210 B
JavaScript
|
|
function _tdzError(name) {
|
||
|
|
throw new ReferenceError(name + " is not defined - temporal dead zone");
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = _tdzError;
|
||
|
|
module.exports["default"] = module.exports, module.exports.__esModule = true;
|