@medusajs/utils
Version:
Medusa utilities functions shared by Medusa core and Modules
14 lines • 573 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetIsoStringFromDate = void 0;
const is_date_1 = require("./is-date");
const errors_1 = require("./errors");
const GetIsoStringFromDate = (date) => {
if (!(0, is_date_1.isDate)(date)) {
throw new errors_1.MedusaError(errors_1.MedusaError.Types.INVALID_DATA, `Cannot format date to ISO string: ${date}`);
}
date = new Date(date);
return date.toISOString();
};
exports.GetIsoStringFromDate = GetIsoStringFromDate;
//# sourceMappingURL=get-iso-string-from-date.js.map
;