Skip to content

Commit

Permalink
fix FS urls; fix #100
Browse files Browse the repository at this point in the history
  • Loading branch information
justincy committed Oct 28, 2016
1 parent 475fa65 commit cb6240f
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 32 deletions.
52 changes: 26 additions & 26 deletions fs-check.js
Original file line number Diff line number Diff line change
Expand Up @@ -2509,31 +2509,6 @@ function isUndefined(obj){
return typeof obj === 'undefined';
}
},{"gedcomx-date":48,"marked":54,"mustache":55}],42:[function(_dereq_,module,exports){
if (typeof Object.create === 'function') {
// implementation from standard node.js 'util' module
module.exports = function inherits(ctor, superCtor) {
ctor.super_ = superCtor
ctor.prototype = Object.create(superCtor.prototype, {
constructor: {
value: ctor,
enumerable: false,
writable: true,
configurable: true
}
});
};
} else {
// old school shim for old browsers
module.exports = function inherits(ctor, superCtor) {
ctor.super_ = superCtor
var TempCtor = function () {}
TempCtor.prototype = superCtor.prototype
ctor.prototype = new TempCtor()
ctor.prototype.constructor = ctor
}
}

},{}],43:[function(_dereq_,module,exports){
// shim for using process in browser

var process = module.exports = {};
Expand Down Expand Up @@ -2595,6 +2570,31 @@ process.chdir = function (dir) {
throw new Error('process.chdir is not supported');
};

},{}],43:[function(_dereq_,module,exports){
if (typeof Object.create === 'function') {
// implementation from standard node.js 'util' module
module.exports = function inherits(ctor, superCtor) {
ctor.super_ = superCtor
ctor.prototype = Object.create(superCtor.prototype, {
constructor: {
value: ctor,
enumerable: false,
writable: true,
configurable: true
}
});
};
} else {
// old school shim for old browsers
module.exports = function inherits(ctor, superCtor) {
ctor.super_ = superCtor
var TempCtor = function () {}
TempCtor.prototype = superCtor.prototype
ctor.prototype = new TempCtor()
ctor.prototype.constructor = ctor
}
}

},{}],44:[function(_dereq_,module,exports){
module.exports = function isBuffer(arg) {
return arg && typeof arg === 'object'
Expand Down Expand Up @@ -3192,7 +3192,7 @@ function hasOwnProperty(obj, prop) {
}

}).call(this,_dereq_("/home/ubuntu/workspace/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js"),typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./support/isBuffer":44,"/home/ubuntu/workspace/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":43,"inherits":42}],46:[function(_dereq_,module,exports){
},{"./support/isBuffer":44,"/home/ubuntu/workspace/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":42,"inherits":43}],46:[function(_dereq_,module,exports){
var util = _dereq_('util'),
Simple = _dereq_('./simple.js');

Expand Down
7 changes: 4 additions & 3 deletions fs-check.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion fs-check.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit cb6240f

Please sign in to comment.