2021-02-24 20:04:03 +01:00

5 lines
183 B
JavaScript

import undef from "../temporalUndefined/_index.mjs";
import err from "../tdz/_index.mjs";
export default function _temporalRef(val, name) {
return val === undef ? err(name) : val;
}