cast.js 238 B

123456
  1. // Simple macro for inferring a schema from a template,
  2. // then coercing a variable to match that schema.
  3. module.exports = function cast (template, data) {
  4. var rttc = require('../');
  5. return rttc.coerce(rttc.infer(template), data);
  6. };