isomorphic-git 1.32.3 → 1.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser-tests.json +6 -3
- package/index.cjs +410 -69
- package/index.js +410 -69
- package/index.umd.min.js +6 -2
- package/index.umd.min.js.map +1 -1
- package/managers/index.cjs +6084 -0
- package/managers/index.d.cts +953 -0
- package/managers/index.d.ts +952 -0
- package/managers/index.js +6071 -0
- package/managers/index.umd.min.js +13 -0
- package/managers/index.umd.min.js.map +1 -0
- package/models/index.cjs +365 -0
- package/models/index.d.cts +105 -0
- package/models/index.d.ts +104 -0
- package/models/index.js +359 -0
- package/models/index.umd.min.js +9 -0
- package/models/index.umd.min.js.map +1 -0
- package/package.json +25 -3
- package/size_report.html +1 -1
package/models/index.js
ADDED
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
import pify from 'pify';
|
|
2
|
+
import { join } from 'path-browserify';
|
|
3
|
+
|
|
4
|
+
function compareStrings(a, b) {
|
|
5
|
+
// https://stackoverflow.com/a/40355107/2168416
|
|
6
|
+
return -(a < b) || +(a > b)
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
function dirname(path) {
|
|
10
|
+
const last = Math.max(path.lastIndexOf('/'), path.lastIndexOf('\\'));
|
|
11
|
+
if (last === -1) return '.'
|
|
12
|
+
if (last === 0) return '/'
|
|
13
|
+
return path.slice(0, last)
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Removes the directory at the specified filepath recursively. Used internally to replicate the behavior of
|
|
18
|
+
* fs.promises.rm({ recursive: true, force: true }) from Node.js 14 and above when not available. If the provided
|
|
19
|
+
* filepath resolves to a file, it will be removed.
|
|
20
|
+
*
|
|
21
|
+
* @param {import('../models/FileSystem.js').FileSystem} fs
|
|
22
|
+
* @param {string} filepath - The file or directory to remove.
|
|
23
|
+
*/
|
|
24
|
+
async function rmRecursive(fs, filepath) {
|
|
25
|
+
const entries = await fs.readdir(filepath);
|
|
26
|
+
if (entries == null) {
|
|
27
|
+
await fs.rm(filepath);
|
|
28
|
+
} else if (entries.length) {
|
|
29
|
+
await Promise.all(
|
|
30
|
+
entries.map(entry => {
|
|
31
|
+
const subpath = join(filepath, entry);
|
|
32
|
+
return fs.lstat(subpath).then(stat => {
|
|
33
|
+
if (!stat) return
|
|
34
|
+
return stat.isDirectory() ? rmRecursive(fs, subpath) : fs.rm(subpath)
|
|
35
|
+
})
|
|
36
|
+
})
|
|
37
|
+
).then(() => fs.rmdir(filepath));
|
|
38
|
+
} else {
|
|
39
|
+
await fs.rmdir(filepath);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
function isPromiseLike(obj) {
|
|
44
|
+
return isObject(obj) && isFunction(obj.then) && isFunction(obj.catch)
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
function isObject(obj) {
|
|
48
|
+
return obj && typeof obj === 'object'
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function isFunction(obj) {
|
|
52
|
+
return typeof obj === 'function'
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
function isPromiseFs(fs) {
|
|
56
|
+
const test = targetFs => {
|
|
57
|
+
try {
|
|
58
|
+
// If readFile returns a promise then we can probably assume the other
|
|
59
|
+
// commands do as well
|
|
60
|
+
return targetFs.readFile().catch(e => e)
|
|
61
|
+
} catch (e) {
|
|
62
|
+
return e
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
return isPromiseLike(test(fs))
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// List of commands all filesystems are expected to provide. `rm` is not
|
|
69
|
+
// included since it may not exist and must be handled as a special case
|
|
70
|
+
const commands = [
|
|
71
|
+
'readFile',
|
|
72
|
+
'writeFile',
|
|
73
|
+
'mkdir',
|
|
74
|
+
'rmdir',
|
|
75
|
+
'unlink',
|
|
76
|
+
'stat',
|
|
77
|
+
'lstat',
|
|
78
|
+
'readdir',
|
|
79
|
+
'readlink',
|
|
80
|
+
'symlink',
|
|
81
|
+
];
|
|
82
|
+
|
|
83
|
+
function bindFs(target, fs) {
|
|
84
|
+
if (isPromiseFs(fs)) {
|
|
85
|
+
for (const command of commands) {
|
|
86
|
+
target[`_${command}`] = fs[command].bind(fs);
|
|
87
|
+
}
|
|
88
|
+
} else {
|
|
89
|
+
for (const command of commands) {
|
|
90
|
+
target[`_${command}`] = pify(fs[command].bind(fs));
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Handle the special case of `rm`
|
|
95
|
+
if (isPromiseFs(fs)) {
|
|
96
|
+
if (fs.rm) target._rm = fs.rm.bind(fs);
|
|
97
|
+
else if (fs.rmdir.length > 1) target._rm = fs.rmdir.bind(fs);
|
|
98
|
+
else target._rm = rmRecursive.bind(null, target);
|
|
99
|
+
} else {
|
|
100
|
+
if (fs.rm) target._rm = pify(fs.rm.bind(fs));
|
|
101
|
+
else if (fs.rmdir.length > 2) target._rm = pify(fs.rmdir.bind(fs));
|
|
102
|
+
else target._rm = rmRecursive.bind(null, target);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* A wrapper class for file system operations, providing a consistent API for both promise-based
|
|
108
|
+
* and callback-based file systems. It includes utility methods for common file system tasks.
|
|
109
|
+
*/
|
|
110
|
+
class FileSystem {
|
|
111
|
+
/**
|
|
112
|
+
* Creates an instance of FileSystem.
|
|
113
|
+
*
|
|
114
|
+
* @param {Object} fs - A file system implementation to wrap.
|
|
115
|
+
*/
|
|
116
|
+
constructor(fs) {
|
|
117
|
+
if (typeof fs._original_unwrapped_fs !== 'undefined') return fs
|
|
118
|
+
|
|
119
|
+
const promises = Object.getOwnPropertyDescriptor(fs, 'promises');
|
|
120
|
+
if (promises && promises.enumerable) {
|
|
121
|
+
bindFs(this, fs.promises);
|
|
122
|
+
} else {
|
|
123
|
+
bindFs(this, fs);
|
|
124
|
+
}
|
|
125
|
+
this._original_unwrapped_fs = fs;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Return true if a file exists, false if it doesn't exist.
|
|
130
|
+
* Rethrows errors that aren't related to file existence.
|
|
131
|
+
*
|
|
132
|
+
* @param {string} filepath - The path to the file.
|
|
133
|
+
* @param {Object} [options] - Additional options.
|
|
134
|
+
* @returns {Promise<boolean>} - `true` if the file exists, `false` otherwise.
|
|
135
|
+
*/
|
|
136
|
+
async exists(filepath, options = {}) {
|
|
137
|
+
try {
|
|
138
|
+
await this._stat(filepath);
|
|
139
|
+
return true
|
|
140
|
+
} catch (err) {
|
|
141
|
+
if (
|
|
142
|
+
err.code === 'ENOENT' ||
|
|
143
|
+
err.code === 'ENOTDIR' ||
|
|
144
|
+
(err.code || '').includes('ENS')
|
|
145
|
+
) {
|
|
146
|
+
return false
|
|
147
|
+
} else {
|
|
148
|
+
console.log('Unhandled error in "FileSystem.exists()" function', err);
|
|
149
|
+
throw err
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Return the contents of a file if it exists, otherwise returns null.
|
|
156
|
+
*
|
|
157
|
+
* @param {string} filepath - The path to the file.
|
|
158
|
+
* @param {Object} [options] - Options for reading the file.
|
|
159
|
+
* @returns {Promise<Buffer|string|null>} - The file contents, or `null` if the file doesn't exist.
|
|
160
|
+
*/
|
|
161
|
+
async read(filepath, options = {}) {
|
|
162
|
+
try {
|
|
163
|
+
let buffer = await this._readFile(filepath, options);
|
|
164
|
+
if (options.autocrlf === 'true') {
|
|
165
|
+
try {
|
|
166
|
+
buffer = new TextDecoder('utf8', { fatal: true }).decode(buffer);
|
|
167
|
+
buffer = buffer.replace(/\r\n/g, '\n');
|
|
168
|
+
buffer = new TextEncoder().encode(buffer);
|
|
169
|
+
} catch (error) {
|
|
170
|
+
// non utf8 file
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
// Convert plain ArrayBuffers to Buffers
|
|
174
|
+
if (typeof buffer !== 'string') {
|
|
175
|
+
buffer = Buffer.from(buffer);
|
|
176
|
+
}
|
|
177
|
+
return buffer
|
|
178
|
+
} catch (err) {
|
|
179
|
+
return null
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Write a file (creating missing directories if need be) without throwing errors.
|
|
185
|
+
*
|
|
186
|
+
* @param {string} filepath - The path to the file.
|
|
187
|
+
* @param {Buffer|Uint8Array|string} contents - The data to write.
|
|
188
|
+
* @param {Object|string} [options] - Options for writing the file.
|
|
189
|
+
* @returns {Promise<void>}
|
|
190
|
+
*/
|
|
191
|
+
async write(filepath, contents, options = {}) {
|
|
192
|
+
try {
|
|
193
|
+
await this._writeFile(filepath, contents, options);
|
|
194
|
+
return
|
|
195
|
+
} catch (err) {
|
|
196
|
+
// Hmm. Let's try mkdirp and try again.
|
|
197
|
+
await this.mkdir(dirname(filepath));
|
|
198
|
+
await this._writeFile(filepath, contents, options);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Make a directory (or series of nested directories) without throwing an error if it already exists.
|
|
204
|
+
*
|
|
205
|
+
* @param {string} filepath - The path to the directory.
|
|
206
|
+
* @param {boolean} [_selfCall=false] - Internal flag to prevent infinite recursion.
|
|
207
|
+
* @returns {Promise<void>}
|
|
208
|
+
*/
|
|
209
|
+
async mkdir(filepath, _selfCall = false) {
|
|
210
|
+
try {
|
|
211
|
+
await this._mkdir(filepath);
|
|
212
|
+
return
|
|
213
|
+
} catch (err) {
|
|
214
|
+
// If err is null then operation succeeded!
|
|
215
|
+
if (err === null) return
|
|
216
|
+
// If the directory already exists, that's OK!
|
|
217
|
+
if (err.code === 'EEXIST') return
|
|
218
|
+
// Avoid infinite loops of failure
|
|
219
|
+
if (_selfCall) throw err
|
|
220
|
+
// If we got a "no such file or directory error" backup and try again.
|
|
221
|
+
if (err.code === 'ENOENT') {
|
|
222
|
+
const parent = dirname(filepath);
|
|
223
|
+
// Check to see if we've gone too far
|
|
224
|
+
if (parent === '.' || parent === '/' || parent === filepath) throw err
|
|
225
|
+
// Infinite recursion, what could go wrong?
|
|
226
|
+
await this.mkdir(parent);
|
|
227
|
+
await this.mkdir(filepath, true);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Delete a file without throwing an error if it is already deleted.
|
|
234
|
+
*
|
|
235
|
+
* @param {string} filepath - The path to the file.
|
|
236
|
+
* @returns {Promise<void>}
|
|
237
|
+
*/
|
|
238
|
+
async rm(filepath) {
|
|
239
|
+
try {
|
|
240
|
+
await this._unlink(filepath);
|
|
241
|
+
} catch (err) {
|
|
242
|
+
if (err.code !== 'ENOENT') throw err
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* Delete a directory without throwing an error if it is already deleted.
|
|
248
|
+
*
|
|
249
|
+
* @param {string} filepath - The path to the directory.
|
|
250
|
+
* @param {Object} [opts] - Options for deleting the directory.
|
|
251
|
+
* @returns {Promise<void>}
|
|
252
|
+
*/
|
|
253
|
+
async rmdir(filepath, opts) {
|
|
254
|
+
try {
|
|
255
|
+
if (opts && opts.recursive) {
|
|
256
|
+
await this._rm(filepath, opts);
|
|
257
|
+
} else {
|
|
258
|
+
await this._rmdir(filepath);
|
|
259
|
+
}
|
|
260
|
+
} catch (err) {
|
|
261
|
+
if (err.code !== 'ENOENT') throw err
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* Read a directory without throwing an error is the directory doesn't exist
|
|
267
|
+
*
|
|
268
|
+
* @param {string} filepath - The path to the directory.
|
|
269
|
+
* @returns {Promise<string[]|null>} - An array of file names, or `null` if the path is not a directory.
|
|
270
|
+
*/
|
|
271
|
+
async readdir(filepath) {
|
|
272
|
+
try {
|
|
273
|
+
const names = await this._readdir(filepath);
|
|
274
|
+
// Ordering is not guaranteed, and system specific (Windows vs Unix)
|
|
275
|
+
// so we must sort them ourselves.
|
|
276
|
+
names.sort(compareStrings);
|
|
277
|
+
return names
|
|
278
|
+
} catch (err) {
|
|
279
|
+
if (err.code === 'ENOTDIR') return null
|
|
280
|
+
return []
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
/**
|
|
285
|
+
* Return a flat list of all the files nested inside a directory
|
|
286
|
+
*
|
|
287
|
+
* Based on an elegant concurrent recursive solution from SO
|
|
288
|
+
* https://stackoverflow.com/a/45130990/2168416
|
|
289
|
+
*
|
|
290
|
+
* @param {string} dir - The directory to read.
|
|
291
|
+
* @returns {Promise<string[]>} - A flat list of all files in the directory.
|
|
292
|
+
*/
|
|
293
|
+
async readdirDeep(dir) {
|
|
294
|
+
const subdirs = await this._readdir(dir);
|
|
295
|
+
const files = await Promise.all(
|
|
296
|
+
subdirs.map(async subdir => {
|
|
297
|
+
const res = dir + '/' + subdir;
|
|
298
|
+
return (await this._stat(res)).isDirectory()
|
|
299
|
+
? this.readdirDeep(res)
|
|
300
|
+
: res
|
|
301
|
+
})
|
|
302
|
+
);
|
|
303
|
+
return files.reduce((a, f) => a.concat(f), [])
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* Return the Stats of a file/symlink if it exists, otherwise returns null.
|
|
308
|
+
* Rethrows errors that aren't related to file existence.
|
|
309
|
+
*
|
|
310
|
+
* @param {string} filename - The path to the file or symlink.
|
|
311
|
+
* @returns {Promise<Object|null>} - The stats object, or `null` if the file doesn't exist.
|
|
312
|
+
*/
|
|
313
|
+
async lstat(filename) {
|
|
314
|
+
try {
|
|
315
|
+
const stats = await this._lstat(filename);
|
|
316
|
+
return stats
|
|
317
|
+
} catch (err) {
|
|
318
|
+
if (err.code === 'ENOENT' || (err.code || '').includes('ENS')) {
|
|
319
|
+
return null
|
|
320
|
+
}
|
|
321
|
+
throw err
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* Reads the contents of a symlink if it exists, otherwise returns null.
|
|
327
|
+
* Rethrows errors that aren't related to file existence.
|
|
328
|
+
*
|
|
329
|
+
* @param {string} filename - The path to the symlink.
|
|
330
|
+
* @param {Object} [opts={ encoding: 'buffer' }] - Options for reading the symlink.
|
|
331
|
+
* @returns {Promise<Buffer|null>} - The symlink target, or `null` if it doesn't exist.
|
|
332
|
+
*/
|
|
333
|
+
async readlink(filename, opts = { encoding: 'buffer' }) {
|
|
334
|
+
// Note: FileSystem.readlink returns a buffer by default
|
|
335
|
+
// so we can dump it into GitObject.write just like any other file.
|
|
336
|
+
try {
|
|
337
|
+
const link = await this._readlink(filename, opts);
|
|
338
|
+
return Buffer.isBuffer(link) ? link : Buffer.from(link)
|
|
339
|
+
} catch (err) {
|
|
340
|
+
if (err.code === 'ENOENT' || (err.code || '').includes('ENS')) {
|
|
341
|
+
return null
|
|
342
|
+
}
|
|
343
|
+
throw err
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* Write the contents of buffer to a symlink.
|
|
349
|
+
*
|
|
350
|
+
* @param {string} filename - The path to the symlink.
|
|
351
|
+
* @param {Buffer} buffer - The symlink target.
|
|
352
|
+
* @returns {Promise<void>}
|
|
353
|
+
*/
|
|
354
|
+
async writelink(filename, buffer) {
|
|
355
|
+
return this._symlink(buffer.toString('utf8'), filename)
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
export { FileSystem };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
!function(t,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define([],r):"object"==typeof exports?exports.git=r():t.git=r()}(self,(function(){return function(t){var r={};function e(n){if(r[n])return r[n].exports;var i=r[n]={i:n,l:!1,exports:{}};return t[n].call(i.exports,i,i.exports,e),i.l=!0,i.exports}return e.m=t,e.c=r,e.d=function(t,r,n){e.o(t,r)||Object.defineProperty(t,r,{enumerable:!0,get:n})},e.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},e.t=function(t,r){if(1&r&&(t=e(t)),8&r)return t;if(4&r&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(e.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&r&&"string"!=typeof t)for(var i in t)e.d(n,i,function(r){return t[r]}.bind(null,i));return n},e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,"a",r),r},e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},e.p="",e(e.s=225)}({101:function(t,r,e){"use strict";e.d(r,"a",(function(){return u}));var n=e(12);function i(t,r,e,n,i,o,u){try{var f=t[o](u),s=f.value}catch(t){return void e(t)}f.done?r(s):Promise.resolve(s).then(n,i)}function o(t){return function(){var r=this,e=arguments;return new Promise((function(n,o){var u=t.apply(r,e);function f(t){i(u,n,o,f,s,"next",t)}function s(t){i(u,n,o,f,s,"throw",t)}f(void 0)}))}}function u(t,r){return f.apply(this,arguments)}function f(){return(f=o((function*(t,r){const e=yield t.readdir(r);null==e?yield t.rm(r):e.length?yield Promise.all(e.map(e=>{const i=Object(n.join)(r,e);return t.lstat(i).then(r=>{if(r)return r.isDirectory()?u(t,i):t.rm(i)})})).then(()=>t.rmdir(r)):yield t.rmdir(r)}))).apply(this,arguments)}},12:function(t,r,e){"use strict";(function(r){function e(t){if("string"!=typeof t)throw new TypeError("Path must be a string. Received "+JSON.stringify(t))}function n(t,r){for(var e,n="",i=0,o=-1,u=0,f=0;f<=t.length;++f){if(f<t.length)e=t.charCodeAt(f);else{if(47===e)break;e=47}if(47===e){if(o===f-1||1===u);else if(o!==f-1&&2===u){if(n.length<2||2!==i||46!==n.charCodeAt(n.length-1)||46!==n.charCodeAt(n.length-2))if(n.length>2){var s=n.lastIndexOf("/");if(s!==n.length-1){-1===s?(n="",i=0):i=(n=n.slice(0,s)).length-1-n.lastIndexOf("/"),o=f,u=0;continue}}else if(2===n.length||1===n.length){n="",i=0,o=f,u=0;continue}r&&(n.length>0?n+="/..":n="..",i=2)}else n.length>0?n+="/"+t.slice(o+1,f):n=t.slice(o+1,f),i=f-o-1;o=f,u=0}else 46===e&&-1!==u?++u:u=-1}return n}var i={resolve:function(){for(var t,i="",o=!1,u=arguments.length-1;u>=-1&&!o;u--){var f;u>=0?f=arguments[u]:(void 0===t&&(t=r.cwd()),f=t),e(f),0!==f.length&&(i=f+"/"+i,o=47===f.charCodeAt(0))}return i=n(i,!o),o?i.length>0?"/"+i:"/":i.length>0?i:"."},normalize:function(t){if(e(t),0===t.length)return".";var r=47===t.charCodeAt(0),i=47===t.charCodeAt(t.length-1);return 0!==(t=n(t,!r)).length||r||(t="."),t.length>0&&i&&(t+="/"),r?"/"+t:t},isAbsolute:function(t){return e(t),t.length>0&&47===t.charCodeAt(0)},join:function(){if(0===arguments.length)return".";for(var t,r=0;r<arguments.length;++r){var n=arguments[r];e(n),n.length>0&&(void 0===t?t=n:t+="/"+n)}return void 0===t?".":i.normalize(t)},relative:function(t,r){if(e(t),e(r),t===r)return"";if((t=i.resolve(t))===(r=i.resolve(r)))return"";for(var n=1;n<t.length&&47===t.charCodeAt(n);++n);for(var o=t.length,u=o-n,f=1;f<r.length&&47===r.charCodeAt(f);++f);for(var s=r.length-f,a=u<s?u:s,h=-1,c=0;c<=a;++c){if(c===a){if(s>a){if(47===r.charCodeAt(f+c))return r.slice(f+c+1);if(0===c)return r.slice(f+c)}else u>a&&(47===t.charCodeAt(n+c)?h=c:0===c&&(h=0));break}var l=t.charCodeAt(n+c);if(l!==r.charCodeAt(f+c))break;47===l&&(h=c)}var p="";for(c=n+h+1;c<=o;++c)c!==o&&47!==t.charCodeAt(c)||(0===p.length?p+="..":p+="/..");return p.length>0?p+r.slice(f+h):(f+=h,47===r.charCodeAt(f)&&++f,r.slice(f))},_makeLong:function(t){return t},dirname:function(t){if(e(t),0===t.length)return".";for(var r=t.charCodeAt(0),n=47===r,i=-1,o=!0,u=t.length-1;u>=1;--u)if(47===(r=t.charCodeAt(u))){if(!o){i=u;break}}else o=!1;return-1===i?n?"/":".":n&&1===i?"//":t.slice(0,i)},basename:function(t,r){if(void 0!==r&&"string"!=typeof r)throw new TypeError('"ext" argument must be a string');e(t);var n,i=0,o=-1,u=!0;if(void 0!==r&&r.length>0&&r.length<=t.length){if(r.length===t.length&&r===t)return"";var f=r.length-1,s=-1;for(n=t.length-1;n>=0;--n){var a=t.charCodeAt(n);if(47===a){if(!u){i=n+1;break}}else-1===s&&(u=!1,s=n+1),f>=0&&(a===r.charCodeAt(f)?-1==--f&&(o=n):(f=-1,o=s))}return i===o?o=s:-1===o&&(o=t.length),t.slice(i,o)}for(n=t.length-1;n>=0;--n)if(47===t.charCodeAt(n)){if(!u){i=n+1;break}}else-1===o&&(u=!1,o=n+1);return-1===o?"":t.slice(i,o)},extname:function(t){e(t);for(var r=-1,n=0,i=-1,o=!0,u=0,f=t.length-1;f>=0;--f){var s=t.charCodeAt(f);if(47!==s)-1===i&&(o=!1,i=f+1),46===s?-1===r?r=f:1!==u&&(u=1):-1!==r&&(u=-1);else if(!o){n=f+1;break}}return-1===r||-1===i||0===u||1===u&&r===i-1&&r===n+1?"":t.slice(r,i)},format:function(t){if(null===t||"object"!=typeof t)throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof t);return function(t,r){var e=r.dir||r.root,n=r.base||(r.name||"")+(r.ext||"");return e?e===r.root?e+n:e+t+n:n}("/",t)},parse:function(t){e(t);var r={root:"",dir:"",base:"",ext:"",name:""};if(0===t.length)return r;var n,i=t.charCodeAt(0),o=47===i;o?(r.root="/",n=1):n=0;for(var u=-1,f=0,s=-1,a=!0,h=t.length-1,c=0;h>=n;--h)if(47!==(i=t.charCodeAt(h)))-1===s&&(a=!1,s=h+1),46===i?-1===u?u=h:1!==c&&(c=1):-1!==u&&(c=-1);else if(!a){f=h+1;break}return-1===u||-1===s||0===c||1===c&&u===s-1&&u===f+1?-1!==s&&(r.base=r.name=0===f&&o?t.slice(1,s):t.slice(f,s)):(0===f&&o?(r.name=t.slice(1,u),r.base=t.slice(1,s)):(r.name=t.slice(f,u),r.base=t.slice(f,s)),r.ext=t.slice(u,s)),f>0?r.dir=t.slice(0,f-1):o&&(r.dir="/"),r},sep:"/",delimiter:":",win32:null,posix:null};i.posix=i,t.exports=i}).call(this,e(56))},137:function(t,r,e){"use strict";function n(t){return function(t){return t&&"object"==typeof t}(t)&&i(t.then)&&i(t.catch)}function i(t){return"function"==typeof t}e.d(r,"a",(function(){return n}))},141:function(t,r,e){"use strict";r.byteLength=function(t){var r=a(t),e=r[0],n=r[1];return 3*(e+n)/4-n},r.toByteArray=function(t){var r,e,n=a(t),u=n[0],f=n[1],s=new o(function(t,r,e){return 3*(r+e)/4-e}(0,u,f)),h=0,c=f>0?u-4:u;for(e=0;e<c;e+=4)r=i[t.charCodeAt(e)]<<18|i[t.charCodeAt(e+1)]<<12|i[t.charCodeAt(e+2)]<<6|i[t.charCodeAt(e+3)],s[h++]=r>>16&255,s[h++]=r>>8&255,s[h++]=255&r;2===f&&(r=i[t.charCodeAt(e)]<<2|i[t.charCodeAt(e+1)]>>4,s[h++]=255&r);1===f&&(r=i[t.charCodeAt(e)]<<10|i[t.charCodeAt(e+1)]<<4|i[t.charCodeAt(e+2)]>>2,s[h++]=r>>8&255,s[h++]=255&r);return s},r.fromByteArray=function(t){for(var r,e=t.length,i=e%3,o=[],u=0,f=e-i;u<f;u+=16383)o.push(h(t,u,u+16383>f?f:u+16383));1===i?(r=t[e-1],o.push(n[r>>2]+n[r<<4&63]+"==")):2===i&&(r=(t[e-2]<<8)+t[e-1],o.push(n[r>>10]+n[r>>4&63]+n[r<<2&63]+"="));return o.join("")};for(var n=[],i=[],o="undefined"!=typeof Uint8Array?Uint8Array:Array,u="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",f=0,s=u.length;f<s;++f)n[f]=u[f],i[u.charCodeAt(f)]=f;function a(t){var r=t.length;if(r%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var e=t.indexOf("=");return-1===e&&(e=r),[e,e===r?0:4-e%4]}function h(t,r,e){for(var i,o,u=[],f=r;f<e;f+=3)i=(t[f]<<16&16711680)+(t[f+1]<<8&65280)+(255&t[f+2]),u.push(n[(o=i)>>18&63]+n[o>>12&63]+n[o>>6&63]+n[63&o]);return u.join("")}i["-".charCodeAt(0)]=62,i["_".charCodeAt(0)]=63},142:function(t,r){r.read=function(t,r,e,n,i){var o,u,f=8*i-n-1,s=(1<<f)-1,a=s>>1,h=-7,c=e?i-1:0,l=e?-1:1,p=t[r+c];for(c+=l,o=p&(1<<-h)-1,p>>=-h,h+=f;h>0;o=256*o+t[r+c],c+=l,h-=8);for(u=o&(1<<-h)-1,o>>=-h,h+=n;h>0;u=256*u+t[r+c],c+=l,h-=8);if(0===o)o=1-a;else{if(o===s)return u?NaN:1/0*(p?-1:1);u+=Math.pow(2,n),o-=a}return(p?-1:1)*u*Math.pow(2,o-n)},r.write=function(t,r,e,n,i,o){var u,f,s,a=8*o-i-1,h=(1<<a)-1,c=h>>1,l=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:o-1,d=n?1:-1,g=r<0||0===r&&1/r<0?1:0;for(r=Math.abs(r),isNaN(r)||r===1/0?(f=isNaN(r)?1:0,u=h):(u=Math.floor(Math.log(r)/Math.LN2),r*(s=Math.pow(2,-u))<1&&(u--,s*=2),(r+=u+c>=1?l/s:l*Math.pow(2,1-c))*s>=2&&(u++,s/=2),u+c>=h?(f=0,u=h):u+c>=1?(f=(r*s-1)*Math.pow(2,i),u+=c):(f=r*Math.pow(2,c-1)*Math.pow(2,i),u=0));i>=8;t[e+p]=255&f,p+=d,f/=256,i-=8);for(u=u<<i|f,a+=i;a>0;t[e+p]=255&u,p+=d,u/=256,a-=8);t[e+p-d]|=128*g}},143:function(t,r){var e={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==e.call(t)}},225:function(t,r,e){"use strict";e.r(r);var n=e(3);e.d(r,"FileSystem",(function(){return n.a}))},23:function(t,r,e){"use strict";function n(t){const r=Math.max(t.lastIndexOf("/"),t.lastIndexOf("\\"));return-1===r?".":0===r?"/":t.slice(0,r)}e.d(r,"a",(function(){return n}))},29:function(t,r,e){"use strict";function n(t,r){return-(t<r)||+(t>r)}e.d(r,"a",(function(){return n}))},3:function(t,r,e){"use strict";(function(t){e.d(r,"a",(function(){return d}));var n=e(70),i=e.n(n),o=e(29),u=e(23),f=e(101),s=e(137);function a(t,r,e,n,i,o,u){try{var f=t[o](u),s=f.value}catch(t){return void e(t)}f.done?r(s):Promise.resolve(s).then(n,i)}function h(t){return function(){var r=this,e=arguments;return new Promise((function(n,i){var o=t.apply(r,e);function u(t){a(o,n,i,u,f,"next",t)}function f(t){a(o,n,i,u,f,"throw",t)}u(void 0)}))}}function c(t){return Object(s.a)((t=>{try{return t.readFile().catch(t=>t)}catch(t){return t}})(t))}const l=["readFile","writeFile","mkdir","rmdir","unlink","stat","lstat","readdir","readlink","symlink"];function p(t,r){if(c(r))for(const e of l)t[`_${e}`]=r[e].bind(r);else for(const e of l)t[`_${e}`]=i()(r[e].bind(r));c(r)?r.rm?t._rm=r.rm.bind(r):r.rmdir.length>1?t._rm=r.rmdir.bind(r):t._rm=f.a.bind(null,t):r.rm?t._rm=i()(r.rm.bind(r)):r.rmdir.length>2?t._rm=i()(r.rmdir.bind(r)):t._rm=f.a.bind(null,t)}class d{constructor(t){if(void 0!==t._original_unwrapped_fs)return t;const r=Object.getOwnPropertyDescriptor(t,"promises");r&&r.enumerable?p(this,t.promises):p(this,t),this._original_unwrapped_fs=t}exists(t,r={}){var e=this;return h((function*(){try{return yield e._stat(t),!0}catch(t){if("ENOENT"===t.code||"ENOTDIR"===t.code||(t.code||"").includes("ENS"))return!1;throw console.log('Unhandled error in "FileSystem.exists()" function',t),t}}))()}read(r,e={}){var n=this;return h((function*(){try{let i=yield n._readFile(r,e);if("true"===e.autocrlf)try{i=new TextDecoder("utf8",{fatal:!0}).decode(i),i=i.replace(/\r\n/g,"\n"),i=(new TextEncoder).encode(i)}catch(t){}return"string"!=typeof i&&(i=t.from(i)),i}catch(t){return null}}))()}write(t,r,e={}){var n=this;return h((function*(){try{return void(yield n._writeFile(t,r,e))}catch(i){yield n.mkdir(Object(u.a)(t)),yield n._writeFile(t,r,e)}}))()}mkdir(t,r=!1){var e=this;return h((function*(){try{return void(yield e._mkdir(t))}catch(n){if(null===n)return;if("EEXIST"===n.code)return;if(r)throw n;if("ENOENT"===n.code){const r=Object(u.a)(t);if("."===r||"/"===r||r===t)throw n;yield e.mkdir(r),yield e.mkdir(t,!0)}}}))()}rm(t){var r=this;return h((function*(){try{yield r._unlink(t)}catch(t){if("ENOENT"!==t.code)throw t}}))()}rmdir(t,r){var e=this;return h((function*(){try{r&&r.recursive?yield e._rm(t,r):yield e._rmdir(t)}catch(t){if("ENOENT"!==t.code)throw t}}))()}readdir(t){var r=this;return h((function*(){try{const e=yield r._readdir(t);return e.sort(o.a),e}catch(t){return"ENOTDIR"===t.code?null:[]}}))()}readdirDeep(t){var r=this;return h((function*(){const e=yield r._readdir(t);return(yield Promise.all(e.map(function(){var e=h((function*(e){const n=t+"/"+e;return(yield r._stat(n)).isDirectory()?r.readdirDeep(n):n}));return function(t){return e.apply(this,arguments)}}()))).reduce((t,r)=>t.concat(r),[])}))()}lstat(t){var r=this;return h((function*(){try{return yield r._lstat(t)}catch(t){if("ENOENT"===t.code||(t.code||"").includes("ENS"))return null;throw t}}))()}readlink(r,e={encoding:"buffer"}){var n=this;return h((function*(){try{const i=yield n._readlink(r,e);return t.isBuffer(i)?i:t.from(i)}catch(t){if("ENOENT"===t.code||(t.code||"").includes("ENS"))return null;throw t}}))()}writelink(t,r){var e=this;return h((function*(){return e._symlink(r.toString("utf8"),t)}))()}}}).call(this,e(9).Buffer)},56:function(t,r){var e,n,i=t.exports={};function o(){throw new Error("setTimeout has not been defined")}function u(){throw new Error("clearTimeout has not been defined")}function f(t){if(e===setTimeout)return setTimeout(t,0);if((e===o||!e)&&setTimeout)return e=setTimeout,setTimeout(t,0);try{return e(t,0)}catch(r){try{return e.call(null,t,0)}catch(r){return e.call(this,t,0)}}}!function(){try{e="function"==typeof setTimeout?setTimeout:o}catch(t){e=o}try{n="function"==typeof clearTimeout?clearTimeout:u}catch(t){n=u}}();var s,a=[],h=!1,c=-1;function l(){h&&s&&(h=!1,s.length?a=s.concat(a):c=-1,a.length&&p())}function p(){if(!h){var t=f(l);h=!0;for(var r=a.length;r;){for(s=a,a=[];++c<r;)s&&s[c].run();c=-1,r=a.length}s=null,h=!1,function(t){if(n===clearTimeout)return clearTimeout(t);if((n===u||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(t);try{n(t)}catch(r){try{return n.call(null,t)}catch(r){return n.call(this,t)}}}(t)}}function d(t,r){this.fun=t,this.array=r}function g(){}i.nextTick=function(t){var r=new Array(arguments.length-1);if(arguments.length>1)for(var e=1;e<arguments.length;e++)r[e-1]=arguments[e];a.push(new d(t,r)),1!==a.length||h||f(p)},d.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=g,i.addListener=g,i.once=g,i.off=g,i.removeListener=g,i.removeAllListeners=g,i.emit=g,i.prependListener=g,i.prependOnceListener=g,i.listeners=function(t){return[]},i.binding=function(t){throw new Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(t){throw new Error("process.chdir is not supported")},i.umask=function(){return 0}},70:function(t,r,e){"use strict";const n=(t,r)=>function(...e){return new(0,r.promiseModule)((n,i)=>{r.multiArgs?e.push((...t)=>{r.errorFirst?t[0]?i(t):(t.shift(),n(t)):n(t)}):r.errorFirst?e.push((t,r)=>{t?i(t):n(r)}):e.push(n),t.apply(this,e)})};t.exports=(t,r)=>{r=Object.assign({exclude:[/.+(Sync|Stream)$/],errorFirst:!0,promiseModule:Promise},r);const e=typeof t;if(null===t||"object"!==e&&"function"!==e)throw new TypeError(`Expected \`input\` to be a \`Function\` or \`Object\`, got \`${null===t?"null":e}\``);const i=t=>{const e=r=>"string"==typeof r?t===r:r.test(t);return r.include?r.include.some(e):!r.exclude.some(e)};let o;o="function"===e?function(...e){return r.excludeMain?t(...e):n(t,r).apply(this,e)}:Object.create(Object.getPrototypeOf(t));for(const e in t){const u=t[e];o[e]="function"==typeof u&&i(e)?n(u,r):u}return o}},72:function(t,r){var e;e=function(){return this}();try{e=e||new Function("return this")()}catch(t){"object"==typeof window&&(e=window)}t.exports=e},9:function(t,r,e){"use strict";(function(t){
|
|
2
|
+
/*!
|
|
3
|
+
* The buffer module from node.js, for the browser.
|
|
4
|
+
*
|
|
5
|
+
* @author Feross Aboukhadijeh <http://feross.org>
|
|
6
|
+
* @license MIT
|
|
7
|
+
*/
|
|
8
|
+
var n=e(141),i=e(142),o=e(143);function u(){return s.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function f(t,r){if(u()<r)throw new RangeError("Invalid typed array length");return s.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(r)).__proto__=s.prototype:(null===t&&(t=new s(r)),t.length=r),t}function s(t,r,e){if(!(s.TYPED_ARRAY_SUPPORT||this instanceof s))return new s(t,r,e);if("number"==typeof t){if("string"==typeof r)throw new Error("If encoding is specified then the first argument must be a string");return c(this,t)}return a(this,t,r,e)}function a(t,r,e,n){if("number"==typeof r)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&r instanceof ArrayBuffer?function(t,r,e,n){if(r.byteLength,e<0||r.byteLength<e)throw new RangeError("'offset' is out of bounds");if(r.byteLength<e+(n||0))throw new RangeError("'length' is out of bounds");r=void 0===e&&void 0===n?new Uint8Array(r):void 0===n?new Uint8Array(r,e):new Uint8Array(r,e,n);s.TYPED_ARRAY_SUPPORT?(t=r).__proto__=s.prototype:t=l(t,r);return t}(t,r,e,n):"string"==typeof r?function(t,r,e){"string"==typeof e&&""!==e||(e="utf8");if(!s.isEncoding(e))throw new TypeError('"encoding" must be a valid string encoding');var n=0|d(r,e),i=(t=f(t,n)).write(r,e);i!==n&&(t=t.slice(0,i));return t}(t,r,e):function(t,r){if(s.isBuffer(r)){var e=0|p(r.length);return 0===(t=f(t,e)).length?t:(r.copy(t,0,0,e),t)}if(r){if("undefined"!=typeof ArrayBuffer&&r.buffer instanceof ArrayBuffer||"length"in r)return"number"!=typeof r.length||(n=r.length)!=n?f(t,0):l(t,r);if("Buffer"===r.type&&o(r.data))return l(t,r.data)}var n;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(t,r)}function h(t){if("number"!=typeof t)throw new TypeError('"size" argument must be a number');if(t<0)throw new RangeError('"size" argument must not be negative')}function c(t,r){if(h(r),t=f(t,r<0?0:0|p(r)),!s.TYPED_ARRAY_SUPPORT)for(var e=0;e<r;++e)t[e]=0;return t}function l(t,r){var e=r.length<0?0:0|p(r.length);t=f(t,e);for(var n=0;n<e;n+=1)t[n]=255&r[n];return t}function p(t){if(t>=u())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+u().toString(16)+" bytes");return 0|t}function d(t,r){if(s.isBuffer(t))return t.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!=typeof t&&(t=""+t);var e=t.length;if(0===e)return 0;for(var n=!1;;)switch(r){case"ascii":case"latin1":case"binary":return e;case"utf8":case"utf-8":case void 0:return j(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*e;case"hex":return e>>>1;case"base64":return F(t).length;default:if(n)return j(t).length;r=(""+r).toLowerCase(),n=!0}}function g(t,r,e){var n=!1;if((void 0===r||r<0)&&(r=0),r>this.length)return"";if((void 0===e||e>this.length)&&(e=this.length),e<=0)return"";if((e>>>=0)<=(r>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return O(this,r,e);case"utf8":case"utf-8":return P(this,r,e);case"ascii":return S(this,r,e);case"latin1":case"binary":return B(this,r,e);case"base64":return R(this,r,e);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return x(this,r,e);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}function y(t,r,e){var n=t[r];t[r]=t[e],t[e]=n}function v(t,r,e,n,i){if(0===t.length)return-1;if("string"==typeof e?(n=e,e=0):e>2147483647?e=2147483647:e<-2147483648&&(e=-2147483648),e=+e,isNaN(e)&&(e=i?0:t.length-1),e<0&&(e=t.length+e),e>=t.length){if(i)return-1;e=t.length-1}else if(e<0){if(!i)return-1;e=0}if("string"==typeof r&&(r=s.from(r,n)),s.isBuffer(r))return 0===r.length?-1:w(t,r,e,n,i);if("number"==typeof r)return r&=255,s.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,r,e):Uint8Array.prototype.lastIndexOf.call(t,r,e):w(t,[r],e,n,i);throw new TypeError("val must be string, number or Buffer")}function w(t,r,e,n,i){var o,u=1,f=t.length,s=r.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||r.length<2)return-1;u=2,f/=2,s/=2,e/=2}function a(t,r){return 1===u?t[r]:t.readUInt16BE(r*u)}if(i){var h=-1;for(o=e;o<f;o++)if(a(t,o)===a(r,-1===h?0:o-h)){if(-1===h&&(h=o),o-h+1===s)return h*u}else-1!==h&&(o-=o-h),h=-1}else for(e+s>f&&(e=f-s),o=e;o>=0;o--){for(var c=!0,l=0;l<s;l++)if(a(t,o+l)!==a(r,l)){c=!1;break}if(c)return o}return-1}function m(t,r,e,n){e=Number(e)||0;var i=t.length-e;n?(n=Number(n))>i&&(n=i):n=i;var o=r.length;if(o%2!=0)throw new TypeError("Invalid hex string");n>o/2&&(n=o/2);for(var u=0;u<n;++u){var f=parseInt(r.substr(2*u,2),16);if(isNaN(f))return u;t[e+u]=f}return u}function b(t,r,e,n){return z(j(r,t.length-e),t,e,n)}function E(t,r,e,n){return z(function(t){for(var r=[],e=0;e<t.length;++e)r.push(255&t.charCodeAt(e));return r}(r),t,e,n)}function A(t,r,e,n){return E(t,r,e,n)}function _(t,r,e,n){return z(F(r),t,e,n)}function T(t,r,e,n){return z(function(t,r){for(var e,n,i,o=[],u=0;u<t.length&&!((r-=2)<0);++u)e=t.charCodeAt(u),n=e>>8,i=e%256,o.push(i),o.push(n);return o}(r,t.length-e),t,e,n)}function R(t,r,e){return 0===r&&e===t.length?n.fromByteArray(t):n.fromByteArray(t.slice(r,e))}function P(t,r,e){e=Math.min(t.length,e);for(var n=[],i=r;i<e;){var o,u,f,s,a=t[i],h=null,c=a>239?4:a>223?3:a>191?2:1;if(i+c<=e)switch(c){case 1:a<128&&(h=a);break;case 2:128==(192&(o=t[i+1]))&&(s=(31&a)<<6|63&o)>127&&(h=s);break;case 3:o=t[i+1],u=t[i+2],128==(192&o)&&128==(192&u)&&(s=(15&a)<<12|(63&o)<<6|63&u)>2047&&(s<55296||s>57343)&&(h=s);break;case 4:o=t[i+1],u=t[i+2],f=t[i+3],128==(192&o)&&128==(192&u)&&128==(192&f)&&(s=(15&a)<<18|(63&o)<<12|(63&u)<<6|63&f)>65535&&s<1114112&&(h=s)}null===h?(h=65533,c=1):h>65535&&(h-=65536,n.push(h>>>10&1023|55296),h=56320|1023&h),n.push(h),i+=c}return function(t){var r=t.length;if(r<=4096)return String.fromCharCode.apply(String,t);var e="",n=0;for(;n<r;)e+=String.fromCharCode.apply(String,t.slice(n,n+=4096));return e}(n)}r.Buffer=s,r.SlowBuffer=function(t){+t!=t&&(t=0);return s.alloc(+t)},r.INSPECT_MAX_BYTES=50,s.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:function(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()&&"function"==typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(t){return!1}}(),r.kMaxLength=u(),s.poolSize=8192,s._augment=function(t){return t.__proto__=s.prototype,t},s.from=function(t,r,e){return a(null,t,r,e)},s.TYPED_ARRAY_SUPPORT&&(s.prototype.__proto__=Uint8Array.prototype,s.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&s[Symbol.species]===s&&Object.defineProperty(s,Symbol.species,{value:null,configurable:!0})),s.alloc=function(t,r,e){return function(t,r,e,n){return h(r),r<=0?f(t,r):void 0!==e?"string"==typeof n?f(t,r).fill(e,n):f(t,r).fill(e):f(t,r)}(null,t,r,e)},s.allocUnsafe=function(t){return c(null,t)},s.allocUnsafeSlow=function(t){return c(null,t)},s.isBuffer=function(t){return!(null==t||!t._isBuffer)},s.compare=function(t,r){if(!s.isBuffer(t)||!s.isBuffer(r))throw new TypeError("Arguments must be Buffers");if(t===r)return 0;for(var e=t.length,n=r.length,i=0,o=Math.min(e,n);i<o;++i)if(t[i]!==r[i]){e=t[i],n=r[i];break}return e<n?-1:n<e?1:0},s.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},s.concat=function(t,r){if(!o(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return s.alloc(0);var e;if(void 0===r)for(r=0,e=0;e<t.length;++e)r+=t[e].length;var n=s.allocUnsafe(r),i=0;for(e=0;e<t.length;++e){var u=t[e];if(!s.isBuffer(u))throw new TypeError('"list" argument must be an Array of Buffers');u.copy(n,i),i+=u.length}return n},s.byteLength=d,s.prototype._isBuffer=!0,s.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var r=0;r<t;r+=2)y(this,r,r+1);return this},s.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var r=0;r<t;r+=4)y(this,r,r+3),y(this,r+1,r+2);return this},s.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var r=0;r<t;r+=8)y(this,r,r+7),y(this,r+1,r+6),y(this,r+2,r+5),y(this,r+3,r+4);return this},s.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?P(this,0,t):g.apply(this,arguments)},s.prototype.equals=function(t){if(!s.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===s.compare(this,t)},s.prototype.inspect=function(){var t="",e=r.INSPECT_MAX_BYTES;return this.length>0&&(t=this.toString("hex",0,e).match(/.{2}/g).join(" "),this.length>e&&(t+=" ... ")),"<Buffer "+t+">"},s.prototype.compare=function(t,r,e,n,i){if(!s.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===r&&(r=0),void 0===e&&(e=t?t.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),r<0||e>t.length||n<0||i>this.length)throw new RangeError("out of range index");if(n>=i&&r>=e)return 0;if(n>=i)return-1;if(r>=e)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(n>>>=0),u=(e>>>=0)-(r>>>=0),f=Math.min(o,u),a=this.slice(n,i),h=t.slice(r,e),c=0;c<f;++c)if(a[c]!==h[c]){o=a[c],u=h[c];break}return o<u?-1:u<o?1:0},s.prototype.includes=function(t,r,e){return-1!==this.indexOf(t,r,e)},s.prototype.indexOf=function(t,r,e){return v(this,t,r,e,!0)},s.prototype.lastIndexOf=function(t,r,e){return v(this,t,r,e,!1)},s.prototype.write=function(t,r,e,n){if(void 0===r)n="utf8",e=this.length,r=0;else if(void 0===e&&"string"==typeof r)n=r,e=this.length,r=0;else{if(!isFinite(r))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");r|=0,isFinite(e)?(e|=0,void 0===n&&(n="utf8")):(n=e,e=void 0)}var i=this.length-r;if((void 0===e||e>i)&&(e=i),t.length>0&&(e<0||r<0)||r>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var o=!1;;)switch(n){case"hex":return m(this,t,r,e);case"utf8":case"utf-8":return b(this,t,r,e);case"ascii":return E(this,t,r,e);case"latin1":case"binary":return A(this,t,r,e);case"base64":return _(this,t,r,e);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return T(this,t,r,e);default:if(o)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),o=!0}},s.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function S(t,r,e){var n="";e=Math.min(t.length,e);for(var i=r;i<e;++i)n+=String.fromCharCode(127&t[i]);return n}function B(t,r,e){var n="";e=Math.min(t.length,e);for(var i=r;i<e;++i)n+=String.fromCharCode(t[i]);return n}function O(t,r,e){var n=t.length;(!r||r<0)&&(r=0),(!e||e<0||e>n)&&(e=n);for(var i="",o=r;o<e;++o)i+=N(t[o]);return i}function x(t,r,e){for(var n=t.slice(r,e),i="",o=0;o<n.length;o+=2)i+=String.fromCharCode(n[o]+256*n[o+1]);return i}function U(t,r,e){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+r>e)throw new RangeError("Trying to access beyond buffer length")}function C(t,r,e,n,i,o){if(!s.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(r>i||r<o)throw new RangeError('"value" argument is out of bounds');if(e+n>t.length)throw new RangeError("Index out of range")}function I(t,r,e,n){r<0&&(r=65535+r+1);for(var i=0,o=Math.min(t.length-e,2);i<o;++i)t[e+i]=(r&255<<8*(n?i:1-i))>>>8*(n?i:1-i)}function Y(t,r,e,n){r<0&&(r=4294967295+r+1);for(var i=0,o=Math.min(t.length-e,4);i<o;++i)t[e+i]=r>>>8*(n?i:3-i)&255}function k(t,r,e,n,i,o){if(e+n>t.length)throw new RangeError("Index out of range");if(e<0)throw new RangeError("Index out of range")}function M(t,r,e,n,o){return o||k(t,0,e,4),i.write(t,r,e,n,23,4),e+4}function L(t,r,e,n,o){return o||k(t,0,e,8),i.write(t,r,e,n,52,8),e+8}s.prototype.slice=function(t,r){var e,n=this.length;if((t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(r=void 0===r?n:~~r)<0?(r+=n)<0&&(r=0):r>n&&(r=n),r<t&&(r=t),s.TYPED_ARRAY_SUPPORT)(e=this.subarray(t,r)).__proto__=s.prototype;else{var i=r-t;e=new s(i,void 0);for(var o=0;o<i;++o)e[o]=this[o+t]}return e},s.prototype.readUIntLE=function(t,r,e){t|=0,r|=0,e||U(t,r,this.length);for(var n=this[t],i=1,o=0;++o<r&&(i*=256);)n+=this[t+o]*i;return n},s.prototype.readUIntBE=function(t,r,e){t|=0,r|=0,e||U(t,r,this.length);for(var n=this[t+--r],i=1;r>0&&(i*=256);)n+=this[t+--r]*i;return n},s.prototype.readUInt8=function(t,r){return r||U(t,1,this.length),this[t]},s.prototype.readUInt16LE=function(t,r){return r||U(t,2,this.length),this[t]|this[t+1]<<8},s.prototype.readUInt16BE=function(t,r){return r||U(t,2,this.length),this[t]<<8|this[t+1]},s.prototype.readUInt32LE=function(t,r){return r||U(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},s.prototype.readUInt32BE=function(t,r){return r||U(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},s.prototype.readIntLE=function(t,r,e){t|=0,r|=0,e||U(t,r,this.length);for(var n=this[t],i=1,o=0;++o<r&&(i*=256);)n+=this[t+o]*i;return n>=(i*=128)&&(n-=Math.pow(2,8*r)),n},s.prototype.readIntBE=function(t,r,e){t|=0,r|=0,e||U(t,r,this.length);for(var n=r,i=1,o=this[t+--n];n>0&&(i*=256);)o+=this[t+--n]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*r)),o},s.prototype.readInt8=function(t,r){return r||U(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},s.prototype.readInt16LE=function(t,r){r||U(t,2,this.length);var e=this[t]|this[t+1]<<8;return 32768&e?4294901760|e:e},s.prototype.readInt16BE=function(t,r){r||U(t,2,this.length);var e=this[t+1]|this[t]<<8;return 32768&e?4294901760|e:e},s.prototype.readInt32LE=function(t,r){return r||U(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},s.prototype.readInt32BE=function(t,r){return r||U(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},s.prototype.readFloatLE=function(t,r){return r||U(t,4,this.length),i.read(this,t,!0,23,4)},s.prototype.readFloatBE=function(t,r){return r||U(t,4,this.length),i.read(this,t,!1,23,4)},s.prototype.readDoubleLE=function(t,r){return r||U(t,8,this.length),i.read(this,t,!0,52,8)},s.prototype.readDoubleBE=function(t,r){return r||U(t,8,this.length),i.read(this,t,!1,52,8)},s.prototype.writeUIntLE=function(t,r,e,n){(t=+t,r|=0,e|=0,n)||C(this,t,r,e,Math.pow(2,8*e)-1,0);var i=1,o=0;for(this[r]=255&t;++o<e&&(i*=256);)this[r+o]=t/i&255;return r+e},s.prototype.writeUIntBE=function(t,r,e,n){(t=+t,r|=0,e|=0,n)||C(this,t,r,e,Math.pow(2,8*e)-1,0);var i=e-1,o=1;for(this[r+i]=255&t;--i>=0&&(o*=256);)this[r+i]=t/o&255;return r+e},s.prototype.writeUInt8=function(t,r,e){return t=+t,r|=0,e||C(this,t,r,1,255,0),s.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[r]=255&t,r+1},s.prototype.writeUInt16LE=function(t,r,e){return t=+t,r|=0,e||C(this,t,r,2,65535,0),s.TYPED_ARRAY_SUPPORT?(this[r]=255&t,this[r+1]=t>>>8):I(this,t,r,!0),r+2},s.prototype.writeUInt16BE=function(t,r,e){return t=+t,r|=0,e||C(this,t,r,2,65535,0),s.TYPED_ARRAY_SUPPORT?(this[r]=t>>>8,this[r+1]=255&t):I(this,t,r,!1),r+2},s.prototype.writeUInt32LE=function(t,r,e){return t=+t,r|=0,e||C(this,t,r,4,4294967295,0),s.TYPED_ARRAY_SUPPORT?(this[r+3]=t>>>24,this[r+2]=t>>>16,this[r+1]=t>>>8,this[r]=255&t):Y(this,t,r,!0),r+4},s.prototype.writeUInt32BE=function(t,r,e){return t=+t,r|=0,e||C(this,t,r,4,4294967295,0),s.TYPED_ARRAY_SUPPORT?(this[r]=t>>>24,this[r+1]=t>>>16,this[r+2]=t>>>8,this[r+3]=255&t):Y(this,t,r,!1),r+4},s.prototype.writeIntLE=function(t,r,e,n){if(t=+t,r|=0,!n){var i=Math.pow(2,8*e-1);C(this,t,r,e,i-1,-i)}var o=0,u=1,f=0;for(this[r]=255&t;++o<e&&(u*=256);)t<0&&0===f&&0!==this[r+o-1]&&(f=1),this[r+o]=(t/u>>0)-f&255;return r+e},s.prototype.writeIntBE=function(t,r,e,n){if(t=+t,r|=0,!n){var i=Math.pow(2,8*e-1);C(this,t,r,e,i-1,-i)}var o=e-1,u=1,f=0;for(this[r+o]=255&t;--o>=0&&(u*=256);)t<0&&0===f&&0!==this[r+o+1]&&(f=1),this[r+o]=(t/u>>0)-f&255;return r+e},s.prototype.writeInt8=function(t,r,e){return t=+t,r|=0,e||C(this,t,r,1,127,-128),s.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[r]=255&t,r+1},s.prototype.writeInt16LE=function(t,r,e){return t=+t,r|=0,e||C(this,t,r,2,32767,-32768),s.TYPED_ARRAY_SUPPORT?(this[r]=255&t,this[r+1]=t>>>8):I(this,t,r,!0),r+2},s.prototype.writeInt16BE=function(t,r,e){return t=+t,r|=0,e||C(this,t,r,2,32767,-32768),s.TYPED_ARRAY_SUPPORT?(this[r]=t>>>8,this[r+1]=255&t):I(this,t,r,!1),r+2},s.prototype.writeInt32LE=function(t,r,e){return t=+t,r|=0,e||C(this,t,r,4,2147483647,-2147483648),s.TYPED_ARRAY_SUPPORT?(this[r]=255&t,this[r+1]=t>>>8,this[r+2]=t>>>16,this[r+3]=t>>>24):Y(this,t,r,!0),r+4},s.prototype.writeInt32BE=function(t,r,e){return t=+t,r|=0,e||C(this,t,r,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),s.TYPED_ARRAY_SUPPORT?(this[r]=t>>>24,this[r+1]=t>>>16,this[r+2]=t>>>8,this[r+3]=255&t):Y(this,t,r,!1),r+4},s.prototype.writeFloatLE=function(t,r,e){return M(this,t,r,!0,e)},s.prototype.writeFloatBE=function(t,r,e){return M(this,t,r,!1,e)},s.prototype.writeDoubleLE=function(t,r,e){return L(this,t,r,!0,e)},s.prototype.writeDoubleBE=function(t,r,e){return L(this,t,r,!1,e)},s.prototype.copy=function(t,r,e,n){if(e||(e=0),n||0===n||(n=this.length),r>=t.length&&(r=t.length),r||(r=0),n>0&&n<e&&(n=e),n===e)return 0;if(0===t.length||0===this.length)return 0;if(r<0)throw new RangeError("targetStart out of bounds");if(e<0||e>=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),t.length-r<n-e&&(n=t.length-r+e);var i,o=n-e;if(this===t&&e<r&&r<n)for(i=o-1;i>=0;--i)t[i+r]=this[i+e];else if(o<1e3||!s.TYPED_ARRAY_SUPPORT)for(i=0;i<o;++i)t[i+r]=this[i+e];else Uint8Array.prototype.set.call(t,this.subarray(e,e+o),r);return o},s.prototype.fill=function(t,r,e,n){if("string"==typeof t){if("string"==typeof r?(n=r,r=0,e=this.length):"string"==typeof e&&(n=e,e=this.length),1===t.length){var i=t.charCodeAt(0);i<256&&(t=i)}if(void 0!==n&&"string"!=typeof n)throw new TypeError("encoding must be a string");if("string"==typeof n&&!s.isEncoding(n))throw new TypeError("Unknown encoding: "+n)}else"number"==typeof t&&(t&=255);if(r<0||this.length<r||this.length<e)throw new RangeError("Out of range index");if(e<=r)return this;var o;if(r>>>=0,e=void 0===e?this.length:e>>>0,t||(t=0),"number"==typeof t)for(o=r;o<e;++o)this[o]=t;else{var u=s.isBuffer(t)?t:j(new s(t,n).toString()),f=u.length;for(o=0;o<e-r;++o)this[o+r]=u[o%f]}return this};var D=/[^+\/0-9A-Za-z-_]/g;function N(t){return t<16?"0"+t.toString(16):t.toString(16)}function j(t,r){var e;r=r||1/0;for(var n=t.length,i=null,o=[],u=0;u<n;++u){if((e=t.charCodeAt(u))>55295&&e<57344){if(!i){if(e>56319){(r-=3)>-1&&o.push(239,191,189);continue}if(u+1===n){(r-=3)>-1&&o.push(239,191,189);continue}i=e;continue}if(e<56320){(r-=3)>-1&&o.push(239,191,189),i=e;continue}e=65536+(i-55296<<10|e-56320)}else i&&(r-=3)>-1&&o.push(239,191,189);if(i=null,e<128){if((r-=1)<0)break;o.push(e)}else if(e<2048){if((r-=2)<0)break;o.push(e>>6|192,63&e|128)}else if(e<65536){if((r-=3)<0)break;o.push(e>>12|224,e>>6&63|128,63&e|128)}else{if(!(e<1114112))throw new Error("Invalid code point");if((r-=4)<0)break;o.push(e>>18|240,e>>12&63|128,e>>6&63|128,63&e|128)}}return o}function F(t){return n.toByteArray(function(t){if((t=function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}(t).replace(D,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function z(t,r,e,n){for(var i=0;i<n&&!(i+e>=r.length||i>=t.length);++i)r[i+e]=t[i];return i}}).call(this,e(72))}})}));
|
|
9
|
+
//# sourceMappingURL=index.umd.min.js.map
|