@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
15 lines • 347 B
JavaScript
export class DateConverter {
/**
* Serializes a date object into its ISO string.
*/
serialize(property) {
return property.toISOString();
}
/**
* Deserializes a string value into a date object.
*/
deserialize(value) {
return new Date(value);
}
}
//# sourceMappingURL=date-converter.js.map