Files
old-kitabcitab-frontend/kitabcitab/node_modules/@babel/runtime/helpers/esm/temporalRef.js

5 lines
165 B
JavaScript
Raw Normal View History

2022-12-27 12:05:56 +01:00
import undef from "./temporalUndefined.js";
import err from "./tdz.js";
export default function _temporalRef(val, name) {
return val === undef ? err(name) : val;
}