forgeplus-react/node_modules/@babel/runtime/helpers/temporalRef.js

11 lines
268 B
JavaScript
Raw Normal View History

2023-07-29 21:19:10 +08:00
var temporalUndefined = require("./temporalUndefined");
function _temporalRef(val, name) {
if (val === temporalUndefined) {
throw new ReferenceError(name + " is not defined - temporal dead zone");
} else {
return val;
}
}
module.exports = _temporalRef;