blob: 4b0679c64cfc40bbea1ca141ca4230731f093762 [file] [log] [blame]
import undef from "./temporalUndefined";
export default function _temporalRef(val, name) {
if (val === undef) {
throw new ReferenceError(name + " is not defined - temporal dead zone");
} else {
return val;
}
}