mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 04:43:12 +03:00
b4c3e1ae40
refs https://github.com/TryGhost/Admin/pull/2227 - a continuation of #2227 that runs the native classes codemod against app/transforms
21 lines
490 B
JavaScript
21 lines
490 B
JavaScript
import Transform from '@ember-data/serializer/transform';
|
|
import classic from 'ember-classic-decorator';
|
|
import moment from 'moment';
|
|
|
|
@classic
|
|
export default class MomentDate extends Transform {
|
|
deserialize(serialized) {
|
|
if (serialized) {
|
|
return moment(serialized);
|
|
}
|
|
return serialized;
|
|
}
|
|
|
|
serialize(deserialized) {
|
|
if (deserialized) {
|
|
return moment(deserialized).toDate();
|
|
}
|
|
return deserialized;
|
|
}
|
|
}
|