talyssonoc/structure

View on GitHub
packages/structure/src/coercion/coercions/date.js

Summary

Maintainability
A
0 mins
Test Coverage
const { isDate } = require('lodash');

module.exports = {
  type: Date,
  isCoerced: isDate,
  nullValue: () => new Date(null),
  coerce(value) {
    return new this.type(value);
  },
};