mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-03-24 07:41:37 +00:00
1.1.17
This commit is contained in:
10
dist/index.js
vendored
10
dist/index.js
vendored
@@ -6357,6 +6357,11 @@ var require_fixed_size = __commonJS({
|
||||
this.btm = 0;
|
||||
this.next = null;
|
||||
}
|
||||
clear() {
|
||||
this.top = this.btm = 0;
|
||||
this.next = null;
|
||||
this.buffer.fill(void 0);
|
||||
}
|
||||
push(data) {
|
||||
if (this.buffer[this.top] !== void 0)
|
||||
return false;
|
||||
@@ -6393,6 +6398,11 @@ var require_fast_fifo = __commonJS({
|
||||
this.tail = this.head;
|
||||
this.length = 0;
|
||||
}
|
||||
clear() {
|
||||
this.head = this.tail;
|
||||
this.head.clear();
|
||||
this.length = 0;
|
||||
}
|
||||
push(val) {
|
||||
this.length++;
|
||||
if (!this.head.push(val)) {
|
||||
|
||||
4
dist/index.js.map
vendored
4
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user