mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
850a223dd4
refs https://github.com/TryGhost/Admin/pull/2242 - there was no further EmberObject specific usage to migrate for these classes so the @classic decorator is not necessary
23 lines
528 B
JavaScript
23 lines
528 B
JavaScript
import Transform from '@ember-data/serializer/transform';
|
|
import moment from 'moment';
|
|
|
|
export default class MomentUtc extends Transform {
|
|
deserialize(serialized) {
|
|
if (serialized) {
|
|
return moment.utc(serialized);
|
|
}
|
|
return serialized;
|
|
}
|
|
|
|
serialize(deserialized) {
|
|
if (deserialized) {
|
|
try {
|
|
return deserialized.toJSON();
|
|
} catch (e) {
|
|
return deserialized;
|
|
}
|
|
}
|
|
return deserialized;
|
|
}
|
|
}
|