feat: 屏蔽MC中无用的类库

merge/1/MERGE
coding 2017-10-14 06:26:22 +00:00
parent e93a438cc2
commit 7754f7f83b
2 changed files with 13 additions and 13 deletions

View File

@ -4,11 +4,11 @@
var NodeBuffer;
try {
// A trick for browserified version, to not include `Buffer` shim
var _require = require;
NodeBuffer = _require('buffer').Buffer;
} catch (__) {}
// try {
// // A trick for browserified version, to not include `Buffer` shim
// var _require = require;
// NodeBuffer = _require('buffer').Buffer;
// } catch (__) {}
var Type = require('../type');

View File

@ -9,14 +9,14 @@ var esprima;
// If not found - try to fallback to window.esprima. If not
// found too - then fail to parse.
//
try {
// workaround to exclude package from browserify list.
var _require = require;
esprima = _require('esprima');
} catch (_) {
/*global window */
if (typeof window !== 'undefined') esprima = window.esprima;
}
// try {
// // workaround to exclude package from browserify list.
// var _require = require;
// esprima = _require('esprima');
// } catch (_) {
// /*global window */
// if (typeof window !== 'undefined') esprima = window.esprima;
// }
var Type = require('../../type');