You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 464B

12345678910111213141516
  1. // Generated by LiveScript 1.4.0
  2. (function(){
  3. var VERSION, parseType, parsedTypeCheck, typeCheck;
  4. VERSION = '0.3.2';
  5. parseType = require('./parse-type');
  6. parsedTypeCheck = require('./check');
  7. typeCheck = function(type, input, options){
  8. return parsedTypeCheck(parseType(type), input, options);
  9. };
  10. module.exports = {
  11. VERSION: VERSION,
  12. typeCheck: typeCheck,
  13. parsedTypeCheck: parsedTypeCheck,
  14. parseType: parseType
  15. };
  16. }).call(this);