app-outlet/app-outlet

View on GitHub
core/entity/transformer/DateToIntTransformer.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
function to(value) {
    return value ? value.getTime() : null;
}

function from(value) {
    return value ? new Date(value) : null;
}

module.exports = {
    to,
    from,
};