[generated] sandpack files from: codesandbox-client
This commit is contained in:
63
sandpack-generated/static/browserfs12/node/index.js
Normal file
63
sandpack-generated/static/browserfs12/node/index.js
Normal file
@@ -0,0 +1,63 @@
|
||||
"use strict";
|
||||
/**
|
||||
* BrowserFS's main entry point.
|
||||
* It installs all of the needed polyfills, and requires() the main module.
|
||||
*/
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
// IE substr does not support negative indices
|
||||
if ('ab'.substr(-1) !== 'b') {
|
||||
String.prototype.substr = function (substr) {
|
||||
return function (start, length) {
|
||||
// did we get a negative start, calculate how much it is from the
|
||||
// beginning of the string
|
||||
if (start < 0) {
|
||||
start = this.length + start;
|
||||
}
|
||||
// call the original function
|
||||
return substr.call(this, start, length);
|
||||
};
|
||||
}(String.prototype.substr);
|
||||
}
|
||||
// Polyfill for Uint8Array.prototype.slice.
|
||||
// Safari and some other browsers do not define it.
|
||||
if (typeof (ArrayBuffer) !== 'undefined' && typeof (Uint8Array) !== 'undefined') {
|
||||
if (!Uint8Array.prototype['slice']) {
|
||||
Uint8Array.prototype.slice = function (start, end) {
|
||||
if (start === void 0) { start = 0; }
|
||||
if (end === void 0) { end = this.length; }
|
||||
var self = this;
|
||||
if (start < 0) {
|
||||
start = this.length + start;
|
||||
if (start < 0) {
|
||||
start = 0;
|
||||
}
|
||||
}
|
||||
if (end < 0) {
|
||||
end = this.length + end;
|
||||
if (end < 0) {
|
||||
end = 0;
|
||||
}
|
||||
}
|
||||
if (end < start) {
|
||||
end = start;
|
||||
}
|
||||
return new Uint8Array(self.buffer, self.byteOffset + start, end - start);
|
||||
};
|
||||
}
|
||||
}
|
||||
__exportStar(require("./core/browserfs"), exports);
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user