"use strict"; const { toTemporalInstant } = require("@js-temporal/polyfill"); const fromTemporal = require("./from-temporal"); module.exports = function fromDate(dateObject, withTimezone) { return fromTemporal(toTemporalInstant.call(dateObject), withTimezone); };