summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/type-check/lib/index.js
blob: f3316bab4902806a9b24bfbee92f5f377ea7434d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Generated by LiveScript 1.4.0
(function(){
  var VERSION, parseType, parsedTypeCheck, typeCheck;
  VERSION = '0.3.2';
  parseType = require('./parse-type');
  parsedTypeCheck = require('./check');
  typeCheck = function(type, input, options){
    return parsedTypeCheck(parseType(type), input, options);
  };
  module.exports = {
    VERSION: VERSION,
    typeCheck: typeCheck,
    parsedTypeCheck: parsedTypeCheck,
    parseType: parseType
  };
}).call(this);