Urara-Blog/node_modules/.pnpm-store/v3/files/5b/5b2b863efeb50810ad31e88eedce38d1fa793258e0ae456a794b0594a50cf56e13ad438e69853d0d12557c6cc1dce81de82204adccad879b2b5c0a2cd9f950
2022-08-14 01:14:53 +08:00

22 lines
788 B
Text

// Generated by LiveScript 1.6.0
(function(){
var parseString, cast, parseType, VERSION, parsedTypeParse, parse;
parseString = require('./parse-string');
cast = require('./cast');
parseType = require('type-check').parseType;
VERSION = '0.4.1';
parsedTypeParse = function(parsedType, string, options){
options == null && (options = {});
options.explicit == null && (options.explicit = false);
options.customTypes == null && (options.customTypes = {});
return cast(parseString(parsedType, string, options), parsedType, options);
};
parse = function(type, string, options){
return parsedTypeParse(parseType(type), string, options);
};
module.exports = {
VERSION: VERSION,
parse: parse,
parsedTypeParse: parsedTypeParse
};
}).call(this);