manifest
Version:
The backend for AI code editors
13 lines (12 loc) • 336 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimestampTransformer = void 0;
class TimestampTransformer {
from(value) {
return value instanceof Date ? value.toISOString() : value;
}
to(value) {
return value;
}
}
exports.TimestampTransformer = TimestampTransformer;