mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-12 20:08:17 +08:00
6 lines
198 B
JavaScript
6 lines
198 B
JavaScript
|
import temporalUndefined from "./temporalUndefined.js";
|
||
|
import tdz from "./tdz.js";
|
||
|
function _temporalRef(r, e) {
|
||
|
return r === temporalUndefined ? tdz(e) : r;
|
||
|
}
|
||
|
export { _temporalRef as default };
|