mirror of
https://github.com/leoherzog/TorrentParts.git
synced 2026-01-24 04:08:04 -08:00
Update Dependencies
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
||||||
(function (process){(function (){
|
(function (process){(function (){
|
||||||
/**
|
/**
|
||||||
* @popperjs/core v2.11.6 - MIT License
|
* @popperjs/core v2.11.7 - MIT License
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
@@ -48,7 +48,7 @@ var round = Math.round;
|
|||||||
function getUAString() {
|
function getUAString() {
|
||||||
var uaData = navigator.userAgentData;
|
var uaData = navigator.userAgentData;
|
||||||
|
|
||||||
if (uaData != null && uaData.brands) {
|
if (uaData != null && uaData.brands && Array.isArray(uaData.brands)) {
|
||||||
return uaData.brands.map(function (item) {
|
return uaData.brands.map(function (item) {
|
||||||
return item.brand + "/" + item.version;
|
return item.brand + "/" + item.version;
|
||||||
}).join(' ');
|
}).join(' ');
|
||||||
@@ -1179,10 +1179,9 @@ var unsetSides = {
|
|||||||
// Zooming can change the DPR, but it seems to report a value that will
|
// Zooming can change the DPR, but it seems to report a value that will
|
||||||
// cleanly divide the values into the appropriate subpixels.
|
// cleanly divide the values into the appropriate subpixels.
|
||||||
|
|
||||||
function roundOffsetsByDPR(_ref) {
|
function roundOffsetsByDPR(_ref, win) {
|
||||||
var x = _ref.x,
|
var x = _ref.x,
|
||||||
y = _ref.y;
|
y = _ref.y;
|
||||||
var win = window;
|
|
||||||
var dpr = win.devicePixelRatio || 1;
|
var dpr = win.devicePixelRatio || 1;
|
||||||
return {
|
return {
|
||||||
x: round(x * dpr) / dpr || 0,
|
x: round(x * dpr) / dpr || 0,
|
||||||
@@ -1265,7 +1264,7 @@ function mapToStyles(_ref2) {
|
|||||||
var _ref4 = roundOffsets === true ? roundOffsetsByDPR({
|
var _ref4 = roundOffsets === true ? roundOffsetsByDPR({
|
||||||
x: x,
|
x: x,
|
||||||
y: y
|
y: y
|
||||||
}) : {
|
}, getWindow(popper)) : {
|
||||||
x: x,
|
x: x,
|
||||||
y: y
|
y: y
|
||||||
};
|
};
|
||||||
@@ -29466,9 +29465,11 @@ module.exports = class FastFIFO {
|
|||||||
this.hwm = hwm || 16
|
this.hwm = hwm || 16
|
||||||
this.head = new FixedFIFO(this.hwm)
|
this.head = new FixedFIFO(this.hwm)
|
||||||
this.tail = this.head
|
this.tail = this.head
|
||||||
|
this.length = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
push (val) {
|
push (val) {
|
||||||
|
this.length++
|
||||||
if (!this.head.push(val)) {
|
if (!this.head.push(val)) {
|
||||||
const prev = this.head
|
const prev = this.head
|
||||||
this.head = prev.next = new FixedFIFO(2 * this.head.buffer.length)
|
this.head = prev.next = new FixedFIFO(2 * this.head.buffer.length)
|
||||||
@@ -29477,6 +29478,7 @@ module.exports = class FastFIFO {
|
|||||||
}
|
}
|
||||||
|
|
||||||
shift () {
|
shift () {
|
||||||
|
if (this.length !== 0) this.length--
|
||||||
const val = this.tail.shift()
|
const val = this.tail.shift()
|
||||||
if (val === undefined && this.tail.next) {
|
if (val === undefined && this.tail.next) {
|
||||||
const next = this.tail.next
|
const next = this.tail.next
|
||||||
@@ -29484,6 +29486,7 @@ module.exports = class FastFIFO {
|
|||||||
this.tail = next
|
this.tail = next
|
||||||
return this.tail.shift()
|
return this.tail.shift()
|
||||||
}
|
}
|
||||||
|
|
||||||
return val
|
return val
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
10
bin/bundle.min.js
vendored
10
bin/bundle.min.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user