~webapps/unity-js-scopes/node.js

« back to all changes in this revision

Viewing changes to tools/eslint/node_modules/optionator/node_modules/type-check/lib/index.js

  • Committer: Marcus Tomlinson
  • Date: 2015-11-13 07:59:04 UTC
  • Revision ID: marcus.tomlinson@canonical.com-20151113075904-h0swczmoq1rvstfc
Node v4 (stable)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Generated by LiveScript 1.2.0
 
2
(function(){
 
3
  var VERSION, parseType, parsedTypeCheck, typeCheck;
 
4
  VERSION = '0.3.1';
 
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);