"use client";
import { constructFromSymbol as o } from"./constants.js";
functionc(n, r) {
returntypeof n == "function" ? n(r) : n && typeof n == "object" && o in n ? n[o](r) : n instanceofDate ? new n.constructor(r) : newDate(r);
}
export {
c as constructFrom,
c asdefault
};