talyssonoc/structure

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

Summary

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

module.exports = {
  type: Number,
  isCoerced: isNumber,
  nullValue: 0,
  coerce(value) {
    return this.type(value);
  },
};