Bug fixing added moving torrents after download, getting ready for alpha release
This commit is contained in:
15
goTorrentWebUI/node_modules/react-dropzone/node_modules/.bin/loose-envify
generated
vendored
Normal file
15
goTorrentWebUI/node_modules/react-dropzone/node_modules/.bin/loose-envify
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
"$basedir/node" "$basedir/../loose-envify/cli.js" "$@"
|
||||
ret=$?
|
||||
else
|
||||
node "$basedir/../loose-envify/cli.js" "$@"
|
||||
ret=$?
|
||||
fi
|
||||
exit $ret
|
7
goTorrentWebUI/node_modules/react-dropzone/node_modules/.bin/loose-envify.cmd
generated
vendored
Normal file
7
goTorrentWebUI/node_modules/react-dropzone/node_modules/.bin/loose-envify.cmd
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
@IF EXIST "%~dp0\node.exe" (
|
||||
"%~dp0\node.exe" "%~dp0\..\loose-envify\cli.js" %*
|
||||
) ELSE (
|
||||
@SETLOCAL
|
||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
node "%~dp0\..\loose-envify\cli.js" %*
|
||||
)
|
70
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/CHANGES.md
generated
vendored
Normal file
70
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/CHANGES.md
generated
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
|
||||
## 2.0.6
|
||||
|
||||
Version 2.0.4 adds support for React Native by clarifying in package.json that
|
||||
the browser environment does not support Node.js domains.
|
||||
Why this is necessary, we leave as an exercise for the user.
|
||||
|
||||
## 2.0.3
|
||||
|
||||
Version 2.0.3 fixes a bug when adjusting the capacity of the task queue.
|
||||
|
||||
## 2.0.1-2.02
|
||||
|
||||
Version 2.0.1 fixes a bug in the way redirects were expressed that affected the
|
||||
function of Browserify, but which Mr would tolerate.
|
||||
|
||||
## 2.0.0
|
||||
|
||||
Version 2 of ASAP is a full rewrite with a few salient changes.
|
||||
First, the ASAP source is CommonJS only and designed with [Browserify][] and
|
||||
[Browserify-compatible][Mr] module loaders in mind.
|
||||
|
||||
[Browserify]: https://github.com/substack/node-browserify
|
||||
[Mr]: https://github.com/montagejs/mr
|
||||
|
||||
The new version has been refactored in two dimensions.
|
||||
Support for Node.js and browsers have been separated, using Browserify
|
||||
redirects and ASAP has been divided into two modules.
|
||||
The "raw" layer depends on the tasks to catch thrown exceptions and unravel
|
||||
Node.js domains.
|
||||
|
||||
The full implementation of ASAP is loadable as `require("asap")` in both Node.js
|
||||
and browsers.
|
||||
|
||||
The raw layer that lacks exception handling overhead is loadable as
|
||||
`require("asap/raw")`.
|
||||
The interface is the same for both layers.
|
||||
|
||||
Tasks are no longer required to be functions, but can rather be any object that
|
||||
implements `task.call()`.
|
||||
With this feature you can recycle task objects to avoid garbage collector churn
|
||||
and avoid closures in general.
|
||||
|
||||
The implementation has been rigorously documented so that our successors can
|
||||
understand the scope of the problem that this module solves and all of its
|
||||
nuances, ensuring that the next generation of implementations know what details
|
||||
are essential.
|
||||
|
||||
- [asap.js](https://github.com/kriskowal/asap/blob/master/asap.js)
|
||||
- [raw.js](https://github.com/kriskowal/asap/blob/master/raw.js)
|
||||
- [browser-asap.js](https://github.com/kriskowal/asap/blob/master/browser-asap.js)
|
||||
- [browser-raw.js](https://github.com/kriskowal/asap/blob/master/browser-raw.js)
|
||||
|
||||
The new version has also been rigorously tested across a broad spectrum of
|
||||
browsers, in both the window and worker context.
|
||||
The following charts capture the browser test results for the most recent
|
||||
release.
|
||||
The first chart shows test results for ASAP running in the main window context.
|
||||
The second chart shows test results for ASAP running in a web worker context.
|
||||
Test results are inconclusive (grey) on browsers that do not support web
|
||||
workers.
|
||||
These data are captured automatically by [Continuous
|
||||
Integration][].
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
[Continuous Integration]: https://github.com/kriskowal/asap/blob/master/CONTRIBUTING.md
|
||||
|
21
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/LICENSE.md
generated
vendored
Normal file
21
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/LICENSE.md
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
Copyright 2009–2014 Contributors. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to
|
||||
deal in the Software without restriction, including without limitation the
|
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
sell copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
IN THE SOFTWARE.
|
||||
|
237
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/README.md
generated
vendored
Normal file
237
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/README.md
generated
vendored
Normal file
@@ -0,0 +1,237 @@
|
||||
# ASAP
|
||||
|
||||
[](https://travis-ci.org/kriskowal/asap)
|
||||
|
||||
Promise and asynchronous observer libraries, as well as hand-rolled callback
|
||||
programs and libraries, often need a mechanism to postpone the execution of a
|
||||
callback until the next available event.
|
||||
(See [Designing API’s for Asynchrony][Zalgo].)
|
||||
The `asap` function executes a task **as soon as possible** but not before it
|
||||
returns, waiting only for the completion of the current event and previously
|
||||
scheduled tasks.
|
||||
|
||||
```javascript
|
||||
asap(function () {
|
||||
// ...
|
||||
});
|
||||
```
|
||||
|
||||
[Zalgo]: http://blog.izs.me/post/59142742143/designing-apis-for-asynchrony
|
||||
|
||||
This CommonJS package provides an `asap` module that exports a function that
|
||||
executes a task function *as soon as possible*.
|
||||
|
||||
ASAP strives to schedule events to occur before yielding for IO, reflow,
|
||||
or redrawing.
|
||||
Each event receives an independent stack, with only platform code in parent
|
||||
frames and the events run in the order they are scheduled.
|
||||
|
||||
ASAP provides a fast event queue that will execute tasks until it is
|
||||
empty before yielding to the JavaScript engine's underlying event-loop.
|
||||
When a task gets added to a previously empty event queue, ASAP schedules a flush
|
||||
event, preferring for that event to occur before the JavaScript engine has an
|
||||
opportunity to perform IO tasks or rendering, thus making the first task and
|
||||
subsequent tasks semantically indistinguishable.
|
||||
ASAP uses a variety of techniques to preserve this invariant on different
|
||||
versions of browsers and Node.js.
|
||||
|
||||
By design, ASAP prevents input events from being handled until the task
|
||||
queue is empty.
|
||||
If the process is busy enough, this may cause incoming connection requests to be
|
||||
dropped, and may cause existing connections to inform the sender to reduce the
|
||||
transmission rate or stall.
|
||||
ASAP allows this on the theory that, if there is enough work to do, there is no
|
||||
sense in looking for trouble.
|
||||
As a consequence, ASAP can interfere with smooth animation.
|
||||
If your task should be tied to the rendering loop, consider using
|
||||
`requestAnimationFrame` instead.
|
||||
A long sequence of tasks can also effect the long running script dialog.
|
||||
If this is a problem, you may be able to use ASAP’s cousin `setImmediate` to
|
||||
break long processes into shorter intervals and periodically allow the browser
|
||||
to breathe.
|
||||
`setImmediate` will yield for IO, reflow, and repaint events.
|
||||
It also returns a handler and can be canceled.
|
||||
For a `setImmediate` shim, consider [YuzuJS setImmediate][setImmediate].
|
||||
|
||||
[setImmediate]: https://github.com/YuzuJS/setImmediate
|
||||
|
||||
Take care.
|
||||
ASAP can sustain infinite recursive calls without warning.
|
||||
It will not halt from a stack overflow, and it will not consume unbounded
|
||||
memory.
|
||||
This is behaviorally equivalent to an infinite loop.
|
||||
Just as with infinite loops, you can monitor a Node.js process for this behavior
|
||||
with a heart-beat signal.
|
||||
As with infinite loops, a very small amount of caution goes a long way to
|
||||
avoiding problems.
|
||||
|
||||
```javascript
|
||||
function loop() {
|
||||
asap(loop);
|
||||
}
|
||||
loop();
|
||||
```
|
||||
|
||||
In browsers, if a task throws an exception, it will not interrupt the flushing
|
||||
of high-priority tasks.
|
||||
The exception will be postponed to a later, low-priority event to avoid
|
||||
slow-downs.
|
||||
In Node.js, if a task throws an exception, ASAP will resume flushing only if—and
|
||||
only after—the error is handled by `domain.on("error")` or
|
||||
`process.on("uncaughtException")`.
|
||||
|
||||
## Raw ASAP
|
||||
|
||||
Checking for exceptions comes at a cost.
|
||||
The package also provides an `asap/raw` module that exports the underlying
|
||||
implementation which is faster but stalls if a task throws an exception.
|
||||
This internal version of the ASAP function does not check for errors.
|
||||
If a task does throw an error, it will stall the event queue unless you manually
|
||||
call `rawAsap.requestFlush()` before throwing the error, or any time after.
|
||||
|
||||
In Node.js, `asap/raw` also runs all tasks outside any domain.
|
||||
If you need a task to be bound to your domain, you will have to do it manually.
|
||||
|
||||
```js
|
||||
if (process.domain) {
|
||||
task = process.domain.bind(task);
|
||||
}
|
||||
rawAsap(task);
|
||||
```
|
||||
|
||||
## Tasks
|
||||
|
||||
A task may be any object that implements `call()`.
|
||||
A function will suffice, but closures tend not to be reusable and can cause
|
||||
garbage collector churn.
|
||||
Both `asap` and `rawAsap` accept task objects to give you the option of
|
||||
recycling task objects or using higher callable object abstractions.
|
||||
See the `asap` source for an illustration.
|
||||
|
||||
|
||||
## Compatibility
|
||||
|
||||
ASAP is tested on Node.js v0.10 and in a broad spectrum of web browsers.
|
||||
The following charts capture the browser test results for the most recent
|
||||
release.
|
||||
The first chart shows test results for ASAP running in the main window context.
|
||||
The second chart shows test results for ASAP running in a web worker context.
|
||||
Test results are inconclusive (grey) on browsers that do not support web
|
||||
workers.
|
||||
These data are captured automatically by [Continuous
|
||||
Integration][].
|
||||
|
||||
[Continuous Integration]: https://github.com/kriskowal/asap/blob/master/CONTRIBUTING.md
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Caveats
|
||||
|
||||
When a task is added to an empty event queue, it is not always possible to
|
||||
guarantee that the task queue will begin flushing immediately after the current
|
||||
event.
|
||||
However, once the task queue begins flushing, it will not yield until the queue
|
||||
is empty, even if the queue grows while executing tasks.
|
||||
|
||||
The following browsers allow the use of [DOM mutation observers][] to access
|
||||
the HTML [microtask queue][], and thus begin flushing ASAP's task queue
|
||||
immediately at the end of the current event loop turn, before any rendering or
|
||||
IO:
|
||||
|
||||
[microtask queue]: http://www.whatwg.org/specs/web-apps/current-work/multipage/webappapis.html#microtask-queue
|
||||
[DOM mutation observers]: http://dom.spec.whatwg.org/#mutation-observers
|
||||
|
||||
- Android 4–4.3
|
||||
- Chrome 26–34
|
||||
- Firefox 14–29
|
||||
- Internet Explorer 11
|
||||
- iPad Safari 6–7.1
|
||||
- iPhone Safari 7–7.1
|
||||
- Safari 6–7
|
||||
|
||||
In the absense of mutation observers, there are a few browsers, and situations
|
||||
like web workers in some of the above browsers, where [message channels][]
|
||||
would be a useful way to avoid falling back to timers.
|
||||
Message channels give direct access to the HTML [task queue][], so the ASAP
|
||||
task queue would flush after any already queued rendering and IO tasks, but
|
||||
without having the minimum delay imposed by timers.
|
||||
However, among these browsers, Internet Explorer 10 and Safari do not reliably
|
||||
dispatch messages, so they are not worth the trouble to implement.
|
||||
|
||||
[message channels]: http://www.whatwg.org/specs/web-apps/current-work/multipage/web-messaging.html#message-channels
|
||||
[task queue]: http://www.whatwg.org/specs/web-apps/current-work/multipage/webappapis.html#concept-task
|
||||
|
||||
- Internet Explorer 10
|
||||
- Safair 5.0-1
|
||||
- Opera 11-12
|
||||
|
||||
In the absense of mutation observers, these browsers and the following browsers
|
||||
all fall back to using `setTimeout` and `setInterval` to ensure that a `flush`
|
||||
occurs.
|
||||
The implementation uses both and cancels whatever handler loses the race, since
|
||||
`setTimeout` tends to occasionally skip tasks in unisolated circumstances.
|
||||
Timers generally delay the flushing of ASAP's task queue for four milliseconds.
|
||||
|
||||
- Firefox 3–13
|
||||
- Internet Explorer 6–10
|
||||
- iPad Safari 4.3
|
||||
- Lynx 2.8.7
|
||||
|
||||
|
||||
## Heritage
|
||||
|
||||
ASAP has been factored out of the [Q][] asynchronous promise library.
|
||||
It originally had a naïve implementation in terms of `setTimeout`, but
|
||||
[Malte Ubl][NonBlocking] provided an insight that `postMessage` might be
|
||||
useful for creating a high-priority, no-delay event dispatch hack.
|
||||
Since then, Internet Explorer proposed and implemented `setImmediate`.
|
||||
Robert Katić began contributing to Q by measuring the performance of
|
||||
the internal implementation of `asap`, paying particular attention to
|
||||
error recovery.
|
||||
Domenic, Robert, and Kris Kowal collectively settled on the current strategy of
|
||||
unrolling the high-priority event queue internally regardless of what strategy
|
||||
we used to dispatch the potentially lower-priority flush event.
|
||||
Domenic went on to make ASAP cooperate with Node.js domains.
|
||||
|
||||
[Q]: https://github.com/kriskowal/q
|
||||
[NonBlocking]: http://www.nonblocking.io/2011/06/windownexttick.html
|
||||
|
||||
For further reading, Nicholas Zakas provided a thorough article on [The
|
||||
Case for setImmediate][NCZ].
|
||||
|
||||
[NCZ]: http://www.nczonline.net/blog/2013/07/09/the-case-for-setimmediate/
|
||||
|
||||
Ember’s RSVP promise implementation later [adopted][RSVP ASAP] the name ASAP but
|
||||
further developed the implentation.
|
||||
Particularly, The `MessagePort` implementation was abandoned due to interaction
|
||||
[problems with Mobile Internet Explorer][IE Problems] in favor of an
|
||||
implementation backed on the newer and more reliable DOM `MutationObserver`
|
||||
interface.
|
||||
These changes were back-ported into this library.
|
||||
|
||||
[IE Problems]: https://github.com/cujojs/when/issues/197
|
||||
[RSVP ASAP]: https://github.com/tildeio/rsvp.js/blob/cddf7232546a9cf858524b75cde6f9edf72620a7/lib/rsvp/asap.js
|
||||
|
||||
In addition, ASAP factored into `asap` and `asap/raw`, such that `asap` remained
|
||||
exception-safe, but `asap/raw` provided a tight kernel that could be used for
|
||||
tasks that guaranteed that they would not throw exceptions.
|
||||
This core is useful for promise implementations that capture thrown errors in
|
||||
rejected promises and do not need a second safety net.
|
||||
At the same time, the exception handling in `asap` was factored into separate
|
||||
implementations for Node.js and browsers, using the the [Browserify][Browser
|
||||
Config] `browser` property in `package.json` to instruct browser module loaders
|
||||
and bundlers, including [Browserify][], [Mr][], and [Mop][], to use the
|
||||
browser-only implementation.
|
||||
|
||||
[Browser Config]: https://gist.github.com/defunctzombie/4339901
|
||||
[Browserify]: https://github.com/substack/node-browserify
|
||||
[Mr]: https://github.com/montagejs/mr
|
||||
[Mop]: https://github.com/montagejs/mop
|
||||
|
||||
## License
|
||||
|
||||
Copyright 2009-2014 by Contributors
|
||||
MIT License (enclosed)
|
||||
|
65
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/asap.js
generated
vendored
Normal file
65
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/asap.js
generated
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
"use strict";
|
||||
|
||||
var rawAsap = require("./raw");
|
||||
var freeTasks = [];
|
||||
|
||||
/**
|
||||
* Calls a task as soon as possible after returning, in its own event, with
|
||||
* priority over IO events. An exception thrown in a task can be handled by
|
||||
* `process.on("uncaughtException") or `domain.on("error")`, but will otherwise
|
||||
* crash the process. If the error is handled, all subsequent tasks will
|
||||
* resume.
|
||||
*
|
||||
* @param {{call}} task A callable object, typically a function that takes no
|
||||
* arguments.
|
||||
*/
|
||||
module.exports = asap;
|
||||
function asap(task) {
|
||||
var rawTask;
|
||||
if (freeTasks.length) {
|
||||
rawTask = freeTasks.pop();
|
||||
} else {
|
||||
rawTask = new RawTask();
|
||||
}
|
||||
rawTask.task = task;
|
||||
rawTask.domain = process.domain;
|
||||
rawAsap(rawTask);
|
||||
}
|
||||
|
||||
function RawTask() {
|
||||
this.task = null;
|
||||
this.domain = null;
|
||||
}
|
||||
|
||||
RawTask.prototype.call = function () {
|
||||
if (this.domain) {
|
||||
this.domain.enter();
|
||||
}
|
||||
var threw = true;
|
||||
try {
|
||||
this.task.call();
|
||||
threw = false;
|
||||
// If the task throws an exception (presumably) Node.js restores the
|
||||
// domain stack for the next event.
|
||||
if (this.domain) {
|
||||
this.domain.exit();
|
||||
}
|
||||
} finally {
|
||||
// We use try/finally and a threw flag to avoid messing up stack traces
|
||||
// when we catch and release errors.
|
||||
if (threw) {
|
||||
// In Node.js, uncaught exceptions are considered fatal errors.
|
||||
// Re-throw them to interrupt flushing!
|
||||
// Ensure that flushing continues if an uncaught exception is
|
||||
// suppressed listening process.on("uncaughtException") or
|
||||
// domain.on("error").
|
||||
rawAsap.requestFlush();
|
||||
}
|
||||
// If the task threw an error, we do not want to exit the domain here.
|
||||
// Exiting the domain would prevent the domain from catching the error.
|
||||
this.task = null;
|
||||
this.domain = null;
|
||||
freeTasks.push(this);
|
||||
}
|
||||
};
|
||||
|
66
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/browser-asap.js
generated
vendored
Normal file
66
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/browser-asap.js
generated
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
"use strict";
|
||||
|
||||
// rawAsap provides everything we need except exception management.
|
||||
var rawAsap = require("./raw");
|
||||
// RawTasks are recycled to reduce GC churn.
|
||||
var freeTasks = [];
|
||||
// We queue errors to ensure they are thrown in right order (FIFO).
|
||||
// Array-as-queue is good enough here, since we are just dealing with exceptions.
|
||||
var pendingErrors = [];
|
||||
var requestErrorThrow = rawAsap.makeRequestCallFromTimer(throwFirstError);
|
||||
|
||||
function throwFirstError() {
|
||||
if (pendingErrors.length) {
|
||||
throw pendingErrors.shift();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Calls a task as soon as possible after returning, in its own event, with priority
|
||||
* over other events like animation, reflow, and repaint. An error thrown from an
|
||||
* event will not interrupt, nor even substantially slow down the processing of
|
||||
* other events, but will be rather postponed to a lower priority event.
|
||||
* @param {{call}} task A callable object, typically a function that takes no
|
||||
* arguments.
|
||||
*/
|
||||
module.exports = asap;
|
||||
function asap(task) {
|
||||
var rawTask;
|
||||
if (freeTasks.length) {
|
||||
rawTask = freeTasks.pop();
|
||||
} else {
|
||||
rawTask = new RawTask();
|
||||
}
|
||||
rawTask.task = task;
|
||||
rawAsap(rawTask);
|
||||
}
|
||||
|
||||
// We wrap tasks with recyclable task objects. A task object implements
|
||||
// `call`, just like a function.
|
||||
function RawTask() {
|
||||
this.task = null;
|
||||
}
|
||||
|
||||
// The sole purpose of wrapping the task is to catch the exception and recycle
|
||||
// the task object after its single use.
|
||||
RawTask.prototype.call = function () {
|
||||
try {
|
||||
this.task.call();
|
||||
} catch (error) {
|
||||
if (asap.onerror) {
|
||||
// This hook exists purely for testing purposes.
|
||||
// Its name will be periodically randomized to break any code that
|
||||
// depends on its existence.
|
||||
asap.onerror(error);
|
||||
} else {
|
||||
// In a web browser, exceptions are not fatal. However, to avoid
|
||||
// slowing down the queue of pending tasks, we rethrow the error in a
|
||||
// lower priority turn.
|
||||
pendingErrors.push(error);
|
||||
requestErrorThrow();
|
||||
}
|
||||
} finally {
|
||||
this.task = null;
|
||||
freeTasks[freeTasks.length] = this;
|
||||
}
|
||||
};
|
223
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/browser-raw.js
generated
vendored
Normal file
223
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/browser-raw.js
generated
vendored
Normal file
@@ -0,0 +1,223 @@
|
||||
"use strict";
|
||||
|
||||
// Use the fastest means possible to execute a task in its own turn, with
|
||||
// priority over other events including IO, animation, reflow, and redraw
|
||||
// events in browsers.
|
||||
//
|
||||
// An exception thrown by a task will permanently interrupt the processing of
|
||||
// subsequent tasks. The higher level `asap` function ensures that if an
|
||||
// exception is thrown by a task, that the task queue will continue flushing as
|
||||
// soon as possible, but if you use `rawAsap` directly, you are responsible to
|
||||
// either ensure that no exceptions are thrown from your task, or to manually
|
||||
// call `rawAsap.requestFlush` if an exception is thrown.
|
||||
module.exports = rawAsap;
|
||||
function rawAsap(task) {
|
||||
if (!queue.length) {
|
||||
requestFlush();
|
||||
flushing = true;
|
||||
}
|
||||
// Equivalent to push, but avoids a function call.
|
||||
queue[queue.length] = task;
|
||||
}
|
||||
|
||||
var queue = [];
|
||||
// Once a flush has been requested, no further calls to `requestFlush` are
|
||||
// necessary until the next `flush` completes.
|
||||
var flushing = false;
|
||||
// `requestFlush` is an implementation-specific method that attempts to kick
|
||||
// off a `flush` event as quickly as possible. `flush` will attempt to exhaust
|
||||
// the event queue before yielding to the browser's own event loop.
|
||||
var requestFlush;
|
||||
// The position of the next task to execute in the task queue. This is
|
||||
// preserved between calls to `flush` so that it can be resumed if
|
||||
// a task throws an exception.
|
||||
var index = 0;
|
||||
// If a task schedules additional tasks recursively, the task queue can grow
|
||||
// unbounded. To prevent memory exhaustion, the task queue will periodically
|
||||
// truncate already-completed tasks.
|
||||
var capacity = 1024;
|
||||
|
||||
// The flush function processes all tasks that have been scheduled with
|
||||
// `rawAsap` unless and until one of those tasks throws an exception.
|
||||
// If a task throws an exception, `flush` ensures that its state will remain
|
||||
// consistent and will resume where it left off when called again.
|
||||
// However, `flush` does not make any arrangements to be called again if an
|
||||
// exception is thrown.
|
||||
function flush() {
|
||||
while (index < queue.length) {
|
||||
var currentIndex = index;
|
||||
// Advance the index before calling the task. This ensures that we will
|
||||
// begin flushing on the next task the task throws an error.
|
||||
index = index + 1;
|
||||
queue[currentIndex].call();
|
||||
// Prevent leaking memory for long chains of recursive calls to `asap`.
|
||||
// If we call `asap` within tasks scheduled by `asap`, the queue will
|
||||
// grow, but to avoid an O(n) walk for every task we execute, we don't
|
||||
// shift tasks off the queue after they have been executed.
|
||||
// Instead, we periodically shift 1024 tasks off the queue.
|
||||
if (index > capacity) {
|
||||
// Manually shift all values starting at the index back to the
|
||||
// beginning of the queue.
|
||||
for (var scan = 0, newLength = queue.length - index; scan < newLength; scan++) {
|
||||
queue[scan] = queue[scan + index];
|
||||
}
|
||||
queue.length -= index;
|
||||
index = 0;
|
||||
}
|
||||
}
|
||||
queue.length = 0;
|
||||
index = 0;
|
||||
flushing = false;
|
||||
}
|
||||
|
||||
// `requestFlush` is implemented using a strategy based on data collected from
|
||||
// every available SauceLabs Selenium web driver worker at time of writing.
|
||||
// https://docs.google.com/spreadsheets/d/1mG-5UYGup5qxGdEMWkhP6BWCz053NUb2E1QoUTU16uA/edit#gid=783724593
|
||||
|
||||
// Safari 6 and 6.1 for desktop, iPad, and iPhone are the only browsers that
|
||||
// have WebKitMutationObserver but not un-prefixed MutationObserver.
|
||||
// Must use `global` or `self` instead of `window` to work in both frames and web
|
||||
// workers. `global` is a provision of Browserify, Mr, Mrs, or Mop.
|
||||
|
||||
/* globals self */
|
||||
var scope = typeof global !== "undefined" ? global : self;
|
||||
var BrowserMutationObserver = scope.MutationObserver || scope.WebKitMutationObserver;
|
||||
|
||||
// MutationObservers are desirable because they have high priority and work
|
||||
// reliably everywhere they are implemented.
|
||||
// They are implemented in all modern browsers.
|
||||
//
|
||||
// - Android 4-4.3
|
||||
// - Chrome 26-34
|
||||
// - Firefox 14-29
|
||||
// - Internet Explorer 11
|
||||
// - iPad Safari 6-7.1
|
||||
// - iPhone Safari 7-7.1
|
||||
// - Safari 6-7
|
||||
if (typeof BrowserMutationObserver === "function") {
|
||||
requestFlush = makeRequestCallFromMutationObserver(flush);
|
||||
|
||||
// MessageChannels are desirable because they give direct access to the HTML
|
||||
// task queue, are implemented in Internet Explorer 10, Safari 5.0-1, and Opera
|
||||
// 11-12, and in web workers in many engines.
|
||||
// Although message channels yield to any queued rendering and IO tasks, they
|
||||
// would be better than imposing the 4ms delay of timers.
|
||||
// However, they do not work reliably in Internet Explorer or Safari.
|
||||
|
||||
// Internet Explorer 10 is the only browser that has setImmediate but does
|
||||
// not have MutationObservers.
|
||||
// Although setImmediate yields to the browser's renderer, it would be
|
||||
// preferrable to falling back to setTimeout since it does not have
|
||||
// the minimum 4ms penalty.
|
||||
// Unfortunately there appears to be a bug in Internet Explorer 10 Mobile (and
|
||||
// Desktop to a lesser extent) that renders both setImmediate and
|
||||
// MessageChannel useless for the purposes of ASAP.
|
||||
// https://github.com/kriskowal/q/issues/396
|
||||
|
||||
// Timers are implemented universally.
|
||||
// We fall back to timers in workers in most engines, and in foreground
|
||||
// contexts in the following browsers.
|
||||
// However, note that even this simple case requires nuances to operate in a
|
||||
// broad spectrum of browsers.
|
||||
//
|
||||
// - Firefox 3-13
|
||||
// - Internet Explorer 6-9
|
||||
// - iPad Safari 4.3
|
||||
// - Lynx 2.8.7
|
||||
} else {
|
||||
requestFlush = makeRequestCallFromTimer(flush);
|
||||
}
|
||||
|
||||
// `requestFlush` requests that the high priority event queue be flushed as
|
||||
// soon as possible.
|
||||
// This is useful to prevent an error thrown in a task from stalling the event
|
||||
// queue if the exception handled by Node.js’s
|
||||
// `process.on("uncaughtException")` or by a domain.
|
||||
rawAsap.requestFlush = requestFlush;
|
||||
|
||||
// To request a high priority event, we induce a mutation observer by toggling
|
||||
// the text of a text node between "1" and "-1".
|
||||
function makeRequestCallFromMutationObserver(callback) {
|
||||
var toggle = 1;
|
||||
var observer = new BrowserMutationObserver(callback);
|
||||
var node = document.createTextNode("");
|
||||
observer.observe(node, {characterData: true});
|
||||
return function requestCall() {
|
||||
toggle = -toggle;
|
||||
node.data = toggle;
|
||||
};
|
||||
}
|
||||
|
||||
// The message channel technique was discovered by Malte Ubl and was the
|
||||
// original foundation for this library.
|
||||
// http://www.nonblocking.io/2011/06/windownexttick.html
|
||||
|
||||
// Safari 6.0.5 (at least) intermittently fails to create message ports on a
|
||||
// page's first load. Thankfully, this version of Safari supports
|
||||
// MutationObservers, so we don't need to fall back in that case.
|
||||
|
||||
// function makeRequestCallFromMessageChannel(callback) {
|
||||
// var channel = new MessageChannel();
|
||||
// channel.port1.onmessage = callback;
|
||||
// return function requestCall() {
|
||||
// channel.port2.postMessage(0);
|
||||
// };
|
||||
// }
|
||||
|
||||
// For reasons explained above, we are also unable to use `setImmediate`
|
||||
// under any circumstances.
|
||||
// Even if we were, there is another bug in Internet Explorer 10.
|
||||
// It is not sufficient to assign `setImmediate` to `requestFlush` because
|
||||
// `setImmediate` must be called *by name* and therefore must be wrapped in a
|
||||
// closure.
|
||||
// Never forget.
|
||||
|
||||
// function makeRequestCallFromSetImmediate(callback) {
|
||||
// return function requestCall() {
|
||||
// setImmediate(callback);
|
||||
// };
|
||||
// }
|
||||
|
||||
// Safari 6.0 has a problem where timers will get lost while the user is
|
||||
// scrolling. This problem does not impact ASAP because Safari 6.0 supports
|
||||
// mutation observers, so that implementation is used instead.
|
||||
// However, if we ever elect to use timers in Safari, the prevalent work-around
|
||||
// is to add a scroll event listener that calls for a flush.
|
||||
|
||||
// `setTimeout` does not call the passed callback if the delay is less than
|
||||
// approximately 7 in web workers in Firefox 8 through 18, and sometimes not
|
||||
// even then.
|
||||
|
||||
function makeRequestCallFromTimer(callback) {
|
||||
return function requestCall() {
|
||||
// We dispatch a timeout with a specified delay of 0 for engines that
|
||||
// can reliably accommodate that request. This will usually be snapped
|
||||
// to a 4 milisecond delay, but once we're flushing, there's no delay
|
||||
// between events.
|
||||
var timeoutHandle = setTimeout(handleTimer, 0);
|
||||
// However, since this timer gets frequently dropped in Firefox
|
||||
// workers, we enlist an interval handle that will try to fire
|
||||
// an event 20 times per second until it succeeds.
|
||||
var intervalHandle = setInterval(handleTimer, 50);
|
||||
|
||||
function handleTimer() {
|
||||
// Whichever timer succeeds will cancel both timers and
|
||||
// execute the callback.
|
||||
clearTimeout(timeoutHandle);
|
||||
clearInterval(intervalHandle);
|
||||
callback();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// This is for `asap.js` only.
|
||||
// Its name will be periodically randomized to break any code that depends on
|
||||
// its existence.
|
||||
rawAsap.makeRequestCallFromTimer = makeRequestCallFromTimer;
|
||||
|
||||
// ASAP was originally a nextTick shim included in Q. This was factored out
|
||||
// into this ASAP package. It was later adapted to RSVP which made further
|
||||
// amendments. These decisions, particularly to marginalize MessageChannel and
|
||||
// to capture the MutationObserver implementation in a closure, were integrated
|
||||
// back into ASAP proper.
|
||||
// https://github.com/tildeio/rsvp.js/blob/cddf7232546a9cf858524b75cde6f9edf72620a7/lib/rsvp/asap.js
|
87
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/package.json
generated
vendored
Normal file
87
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/package.json
generated
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"_from": "asap@~2.0.3",
|
||||
"_id": "asap@2.0.6",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=",
|
||||
"_location": "/react-dropzone/asap",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "asap@~2.0.3",
|
||||
"name": "asap",
|
||||
"escapedName": "asap",
|
||||
"rawSpec": "~2.0.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "~2.0.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/react-dropzone/promise"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
|
||||
"_shasum": "e50347611d7e690943208bbdafebcbc2fb866d46",
|
||||
"_spec": "asap@~2.0.3",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI\\node_modules\\react-dropzone\\node_modules\\promise",
|
||||
"browser": {
|
||||
"./asap": "./browser-asap.js",
|
||||
"./asap.js": "./browser-asap.js",
|
||||
"./raw": "./browser-raw.js",
|
||||
"./raw.js": "./browser-raw.js",
|
||||
"./test/domain.js": "./test/browser-domain.js"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/kriskowal/asap/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "High-priority task queue for Node.js and browsers",
|
||||
"devDependencies": {
|
||||
"benchmark": "^1.0.0",
|
||||
"events": "^1.0.1",
|
||||
"jshint": "^2.5.1",
|
||||
"knox": "^0.8.10",
|
||||
"mr": "^2.0.5",
|
||||
"opener": "^1.3.0",
|
||||
"q": "^2.0.3",
|
||||
"q-io": "^2.0.3",
|
||||
"saucelabs": "^0.1.1",
|
||||
"wd": "^0.2.21",
|
||||
"weak-map": "^1.0.5"
|
||||
},
|
||||
"files": [
|
||||
"raw.js",
|
||||
"asap.js",
|
||||
"browser-raw.js",
|
||||
"browser-asap.js"
|
||||
],
|
||||
"homepage": "https://github.com/kriskowal/asap#readme",
|
||||
"keywords": [
|
||||
"event",
|
||||
"task",
|
||||
"queue"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "./asap.js",
|
||||
"name": "asap",
|
||||
"react-native": {
|
||||
"domain": false
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/kriskowal/asap.git"
|
||||
},
|
||||
"scripts": {
|
||||
"benchmarks": "node benchmarks",
|
||||
"lint": "jshint raw.js asap.js browser-raw.js browser-asap.js $(find scripts -name '*.js' | grep -v gauntlet)",
|
||||
"test": "npm run lint && npm run test-node",
|
||||
"test-browser": "node scripts/publish-bundle.js test/asap-test.js | xargs opener",
|
||||
"test-node": "node test/asap-test.js",
|
||||
"test-publish": "node scripts/publish-bundle.js test/asap-test.js | pbcopy",
|
||||
"test-saucelabs": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-spot-configurations.json",
|
||||
"test-saucelabs-all": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-all-configurations.json",
|
||||
"test-saucelabs-worker": "node scripts/saucelabs-worker-test.js scripts/saucelabs-spot-configurations.json",
|
||||
"test-saucelabs-worker-all": "node scripts/saucelabs-worker-test.js scripts/saucelabs-all-configurations.json",
|
||||
"test-travis": "npm run lint && npm run test-node && npm run test-saucelabs && npm run test-saucelabs-worker"
|
||||
},
|
||||
"version": "2.0.6"
|
||||
}
|
101
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/raw.js
generated
vendored
Normal file
101
goTorrentWebUI/node_modules/react-dropzone/node_modules/asap/raw.js
generated
vendored
Normal file
@@ -0,0 +1,101 @@
|
||||
"use strict";
|
||||
|
||||
var domain; // The domain module is executed on demand
|
||||
var hasSetImmediate = typeof setImmediate === "function";
|
||||
|
||||
// Use the fastest means possible to execute a task in its own turn, with
|
||||
// priority over other events including network IO events in Node.js.
|
||||
//
|
||||
// An exception thrown by a task will permanently interrupt the processing of
|
||||
// subsequent tasks. The higher level `asap` function ensures that if an
|
||||
// exception is thrown by a task, that the task queue will continue flushing as
|
||||
// soon as possible, but if you use `rawAsap` directly, you are responsible to
|
||||
// either ensure that no exceptions are thrown from your task, or to manually
|
||||
// call `rawAsap.requestFlush` if an exception is thrown.
|
||||
module.exports = rawAsap;
|
||||
function rawAsap(task) {
|
||||
if (!queue.length) {
|
||||
requestFlush();
|
||||
flushing = true;
|
||||
}
|
||||
// Avoids a function call
|
||||
queue[queue.length] = task;
|
||||
}
|
||||
|
||||
var queue = [];
|
||||
// Once a flush has been requested, no further calls to `requestFlush` are
|
||||
// necessary until the next `flush` completes.
|
||||
var flushing = false;
|
||||
// The position of the next task to execute in the task queue. This is
|
||||
// preserved between calls to `flush` so that it can be resumed if
|
||||
// a task throws an exception.
|
||||
var index = 0;
|
||||
// If a task schedules additional tasks recursively, the task queue can grow
|
||||
// unbounded. To prevent memory excaustion, the task queue will periodically
|
||||
// truncate already-completed tasks.
|
||||
var capacity = 1024;
|
||||
|
||||
// The flush function processes all tasks that have been scheduled with
|
||||
// `rawAsap` unless and until one of those tasks throws an exception.
|
||||
// If a task throws an exception, `flush` ensures that its state will remain
|
||||
// consistent and will resume where it left off when called again.
|
||||
// However, `flush` does not make any arrangements to be called again if an
|
||||
// exception is thrown.
|
||||
function flush() {
|
||||
while (index < queue.length) {
|
||||
var currentIndex = index;
|
||||
// Advance the index before calling the task. This ensures that we will
|
||||
// begin flushing on the next task the task throws an error.
|
||||
index = index + 1;
|
||||
queue[currentIndex].call();
|
||||
// Prevent leaking memory for long chains of recursive calls to `asap`.
|
||||
// If we call `asap` within tasks scheduled by `asap`, the queue will
|
||||
// grow, but to avoid an O(n) walk for every task we execute, we don't
|
||||
// shift tasks off the queue after they have been executed.
|
||||
// Instead, we periodically shift 1024 tasks off the queue.
|
||||
if (index > capacity) {
|
||||
// Manually shift all values starting at the index back to the
|
||||
// beginning of the queue.
|
||||
for (var scan = 0, newLength = queue.length - index; scan < newLength; scan++) {
|
||||
queue[scan] = queue[scan + index];
|
||||
}
|
||||
queue.length -= index;
|
||||
index = 0;
|
||||
}
|
||||
}
|
||||
queue.length = 0;
|
||||
index = 0;
|
||||
flushing = false;
|
||||
}
|
||||
|
||||
rawAsap.requestFlush = requestFlush;
|
||||
function requestFlush() {
|
||||
// Ensure flushing is not bound to any domain.
|
||||
// It is not sufficient to exit the domain, because domains exist on a stack.
|
||||
// To execute code outside of any domain, the following dance is necessary.
|
||||
var parentDomain = process.domain;
|
||||
if (parentDomain) {
|
||||
if (!domain) {
|
||||
// Lazy execute the domain module.
|
||||
// Only employed if the user elects to use domains.
|
||||
domain = require("domain");
|
||||
}
|
||||
domain.active = process.domain = null;
|
||||
}
|
||||
|
||||
// `setImmediate` is slower that `process.nextTick`, but `process.nextTick`
|
||||
// cannot handle recursion.
|
||||
// `requestFlush` will only be called recursively from `asap.js`, to resume
|
||||
// flushing after an error is thrown into a domain.
|
||||
// Conveniently, `setImmediate` was introduced in the same version
|
||||
// `process.nextTick` started throwing recursion errors.
|
||||
if (flushing && hasSetImmediate) {
|
||||
setImmediate(flush);
|
||||
} else {
|
||||
process.nextTick(flush);
|
||||
}
|
||||
|
||||
if (parentDomain) {
|
||||
domain.active = process.domain = parentDomain;
|
||||
}
|
||||
}
|
409
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/CHANGELOG.md
generated
vendored
Normal file
409
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/CHANGELOG.md
generated
vendored
Normal file
@@ -0,0 +1,409 @@
|
||||
## Changelog
|
||||
##### 1.2.7 [LEGACY] - 2016.07.18
|
||||
* some fixes for issues like #159, #186, #194, #207
|
||||
|
||||
##### 1.2.6 - 2015.11.09
|
||||
* reject with `TypeError` on attempt resolve promise itself
|
||||
* correct behavior with broken `Promise` subclass constructors / methods
|
||||
* added `Promise`-based fallback for microtask
|
||||
* fixed V8 and FF `Array#{values, @@iterator}.name`
|
||||
* fixed IE7- `[1, 2].join(undefined) -> '1,2'`
|
||||
* some other fixes / improvements / optimizations
|
||||
|
||||
##### 1.2.5 - 2015.11.02
|
||||
* some more `Number` constructor fixes:
|
||||
* fixed V8 ~ Node 0.8 bug: `Number('+0x1')` should be `NaN`
|
||||
* fixed `Number(' 0b1\n')` case, should be `1`
|
||||
* fixed `Number()` case, should be `0`
|
||||
|
||||
##### 1.2.4 - 2015.11.01
|
||||
* fixed `Number('0b12') -> NaN` case in the shim
|
||||
* fixed V8 ~ Chromium 40- bug - `Weak(Map|Set)#{delete, get, has}` should not throw errors [#124](https://github.com/zloirock/core-js/issues/124)
|
||||
* some other fixes and optimizations
|
||||
|
||||
##### 1.2.3 - 2015.10.23
|
||||
* fixed some problems related old V8 bug `Object('a').propertyIsEnumerable(0) // => false`, for example, `Object.assign({}, 'qwe')` from the last release
|
||||
* fixed `.name` property and `Function#toString` conversion some polyfilled methods
|
||||
* fixed `Math.imul` arity in Safari 8-
|
||||
|
||||
##### 1.2.2 - 2015.10.18
|
||||
* improved optimisations for V8
|
||||
* fixed build process from external packages, [#120](https://github.com/zloirock/core-js/pull/120)
|
||||
* one more `Object.{assign, values, entries}` fix for [**very** specific case](https://github.com/ljharb/proposal-object-values-entries/issues/5)
|
||||
|
||||
##### 1.2.1 - 2015.10.02
|
||||
* replaced fix `JSON.stringify` + `Symbol` behavior from `.toJSON` method to wrapping `JSON.stringify` - little more correct, [compat-table/642](https://github.com/kangax/compat-table/pull/642)
|
||||
* fixed typo which broke tasks scheduler in WebWorkers in old FF, [#114](https://github.com/zloirock/core-js/pull/114)
|
||||
|
||||
##### 1.2.0 - 2015.09.27
|
||||
* added browser [`Promise` rejection hook](#unhandled-rejection-tracking), [#106](https://github.com/zloirock/core-js/issues/106)
|
||||
* added correct [`IsRegExp`](http://www.ecma-international.org/ecma-262/6.0/#sec-isregexp) logic to [`String#{includes, startsWith, endsWith}`](https://github.com/zloirock/core-js/#ecmascript-6-string) and [`RegExp` constructor](https://github.com/zloirock/core-js/#ecmascript-6-regexp), `@@match` case, [example](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/match#Disabling_the_isRegExp_check)
|
||||
* updated [`String#leftPad`](https://github.com/zloirock/core-js/#ecmascript-7) [with proposal](https://github.com/ljharb/proposal-string-pad-left-right/issues/6): string filler truncated from the right side
|
||||
* replaced V8 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object) - its properties order not only [incorrect](https://github.com/sindresorhus/object-assign/issues/22), it is non-deterministic and it causes some problems
|
||||
* fixed behavior with deleted in getters properties for `Object.{`[`assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)`, `[`entries, values`](https://github.com/zloirock/core-js/#ecmascript-7)`}`, [example](http://goo.gl/iQE01c)
|
||||
* fixed [`Math.sinh`](https://github.com/zloirock/core-js/#ecmascript-6-math) with very small numbers in V8 near Chromium 38
|
||||
* some other fixes and optimizations
|
||||
|
||||
##### 1.1.4 - 2015.09.05
|
||||
* fixed support symbols in FF34-35 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)
|
||||
* fixed [collections iterators](https://github.com/zloirock/core-js/#ecmascript-6-iterators) in FF25-26
|
||||
* fixed non-generic WebKit [`Array.of`](https://github.com/zloirock/core-js/#ecmascript-6-array)
|
||||
* some other fixes and optimizations
|
||||
|
||||
##### 1.1.3 - 2015.08.29
|
||||
* fixed support Node.js domains in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise), [#103](https://github.com/zloirock/core-js/issues/103)
|
||||
|
||||
##### 1.1.2 - 2015.08.28
|
||||
* added `toJSON` method to [`Symbol`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill and to MS Edge implementation for expected `JSON.stringify` result w/o patching this method
|
||||
* replaced [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) implementations w/o correct support third argument
|
||||
* fixed `global` detection with changed `document.domain` in ~IE8, [#100](https://github.com/zloirock/core-js/issues/100)
|
||||
|
||||
##### 1.1.1 - 2015.08.20
|
||||
* added more correct microtask implementation for [`Promise`](#ecmascript-6-promise)
|
||||
|
||||
##### 1.1.0 - 2015.08.17
|
||||
* updated [string padding](https://github.com/zloirock/core-js/#ecmascript-7) to [actual proposal](https://github.com/ljharb/proposal-string-pad-left-right) - renamed, minor internal changes:
|
||||
* `String#lpad` -> `String#padLeft`
|
||||
* `String#rpad` -> `String#padRight`
|
||||
* added [string trim functions](#ecmascript-7) - [proposal](https://github.com/sebmarkbage/ecmascript-string-left-right-trim), defacto standard - required only for IE11- and fixed for some old engines:
|
||||
* `String#trimLeft`
|
||||
* `String#trimRight`
|
||||
* [`String#trim`](https://github.com/zloirock/core-js/#ecmascript-6-string) fixed for some engines by es6 spec and moved from `es5` to single `es6` module
|
||||
* splitted [`es6.object.statics-accept-primitives`](https://github.com/zloirock/core-js/#ecmascript-6-object)
|
||||
* caps for `freeze`-family `Object` methods moved from `es5` to `es6` namespace and joined with [es6 wrappers](https://github.com/zloirock/core-js/#ecmascript-6-object)
|
||||
* `es5` [namespace](https://github.com/zloirock/core-js/#commonjs) also includes modules, moved to `es6` namespace - you can use it as before
|
||||
* increased `MessageChannel` priority in `$.task`, [#95](https://github.com/zloirock/core-js/issues/95)
|
||||
* does not get `global.Symbol` on each getting iterator, if you wanna use alternative `Symbol` shim - add it before `core-js`
|
||||
* [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) optimized and fixed for some cases
|
||||
* simplified [`Reflect.enumerate`](https://github.com/zloirock/core-js/#ecmascript-6-reflect), see [this question](https://esdiscuss.org/topic/question-about-enumerate-and-property-decision-timing)
|
||||
* some corrections in [`Math.acosh`](https://github.com/zloirock/core-js/#ecmascript-6-math)
|
||||
* fixed [`Math.imul`](https://github.com/zloirock/core-js/#ecmascript-6-math) for old WebKit
|
||||
* some fixes in string / RegExp [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp) logic
|
||||
* some other fixes and optimizations
|
||||
|
||||
##### 1.0.1 - 2015.07.31
|
||||
* some fixes for final MS Edge, replaced broken native `Reflect.defineProperty`
|
||||
* some minor fixes and optimizations
|
||||
* changed compression `client/*.min.js` options for safe `Function#name` and `Function#length`, should be fixed [#92](https://github.com/zloirock/core-js/issues/92)
|
||||
|
||||
##### 1.0.0 - 2015.07.22
|
||||
* added logic for [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp):
|
||||
* `Symbol.match`
|
||||
* `Symbol.replace`
|
||||
* `Symbol.split`
|
||||
* `Symbol.search`
|
||||
* actualized and optimized work with iterables:
|
||||
* optimized [`Map`, `Set`, `WeakMap`, `WeakSet` constructors](https://github.com/zloirock/core-js/#ecmascript-6-collections), [`Promise.all`, `Promise.race`](https://github.com/zloirock/core-js/#ecmascript-6-promise) for default `Array Iterator`
|
||||
* optimized [`Array.from`](https://github.com/zloirock/core-js/#ecmascript-6-array) for default `Array Iterator`
|
||||
* added [`core.getIteratorMethod`](https://github.com/zloirock/core-js/#ecmascript-6-iterators) helper
|
||||
* uses enumerable properties in shimmed instances - collections, iterators, etc for optimize performance
|
||||
* added support native constructors to [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) with 2 arguments
|
||||
* added support native constructors to [`Function#bind`](https://github.com/zloirock/core-js/#ecmascript-5) shim with `new`
|
||||
* removed obsolete `.clear` methods native [`Weak`-collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
|
||||
* maximum modularity, reduced minimal custom build size, separated into submodules:
|
||||
* [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect)
|
||||
* [`es6.regexp`](https://github.com/zloirock/core-js/#ecmascript-6-regexp)
|
||||
* [`es6.math`](https://github.com/zloirock/core-js/#ecmascript-6-math)
|
||||
* [`es6.number`](https://github.com/zloirock/core-js/#ecmascript-6-number)
|
||||
* [`es7.object.to-array`](https://github.com/zloirock/core-js/#ecmascript-7)
|
||||
* [`core.object`](https://github.com/zloirock/core-js/#object)
|
||||
* [`core.string`](https://github.com/zloirock/core-js/#escaping-html)
|
||||
* [`core.iter-helpers`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
|
||||
* internal modules (`$`, `$.iter`, etc)
|
||||
* many other optimizations
|
||||
* final cleaning non-standard features
|
||||
* moved `$for` to [separate library](https://github.com/zloirock/forof). This work for syntax - `for-of` loop and comprehensions
|
||||
* moved `Date#{format, formatUTC}` to [separate library](https://github.com/zloirock/dtf). Standard way for this - `ECMA-402`
|
||||
* removed `Math` methods from `Number.prototype`. Slight sugar for simple `Math` methods calling
|
||||
* removed `{Array#, Array, Dict}.turn`
|
||||
* removed `core.global`
|
||||
* uses `ToNumber` instead of `ToLength` in [`Number Iterator`](https://github.com/zloirock/core-js/#number-iterator), `Array.from(2.5)` will be `[0, 1, 2]` instead of `[0, 1]`
|
||||
* fixed [#85](https://github.com/zloirock/core-js/issues/85) - invalid `Promise` unhandled rejection message in nested `setTimeout`
|
||||
* fixed [#86](https://github.com/zloirock/core-js/issues/86) - support FF extensions
|
||||
* fixed [#89](https://github.com/zloirock/core-js/issues/89) - behavior `Number` constructor in strange case
|
||||
|
||||
##### 0.9.18 - 2015.06.17
|
||||
* removed `/` from [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7) escaped characters
|
||||
|
||||
##### 0.9.17 - 2015.06.14
|
||||
* updated [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7) to the [latest proposal](https://github.com/benjamingr/RexExp.escape)
|
||||
* fixed conflict with webpack dev server + IE buggy behavior
|
||||
|
||||
##### 0.9.16 - 2015.06.11
|
||||
* more correct order resolving thenable in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) polyfill
|
||||
* uses polyfill instead of [buggy V8 `Promise`](https://github.com/zloirock/core-js/issues/78)
|
||||
|
||||
##### 0.9.15 - 2015.06.09
|
||||
* [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) from `library` version return wrapped native instances
|
||||
* fixed collections prototype methods in `library` version
|
||||
* optimized [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math)
|
||||
|
||||
##### 0.9.14 - 2015.06.04
|
||||
* updated [`Promise.resolve` behavior](https://esdiscuss.org/topic/fixing-promise-resolve)
|
||||
* added fallback for IE11 buggy `Object.getOwnPropertyNames` + iframe
|
||||
* some other fixes
|
||||
|
||||
##### 0.9.13 - 2015.05.25
|
||||
* added fallback for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol) for old Android
|
||||
* some other fixes
|
||||
|
||||
##### 0.9.12 - 2015.05.24
|
||||
* different instances `core-js` should use / recognize the same symbols
|
||||
* some fixes
|
||||
|
||||
##### 0.9.11 - 2015.05.18
|
||||
* simplified [custom build](https://github.com/zloirock/core-js/#custom-build)
|
||||
* add custom build js api
|
||||
* added `grunt-cli` to `devDependencies` for `npm run grunt`
|
||||
* some fixes
|
||||
|
||||
##### 0.9.10 - 2015.05.16
|
||||
* wrapped `Function#toString` for correct work wrapped methods / constructors with methods similar to the [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
|
||||
* added proto versions of methods to export object in `default` version for consistency with `library` version
|
||||
|
||||
##### 0.9.9 - 2015.05.14
|
||||
* wrapped `Object#propertyIsEnumerable` for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
|
||||
* [added proto versions of methods to `library` for ES7 bind syntax](https://github.com/zloirock/core-js/issues/65)
|
||||
* some other fixes
|
||||
|
||||
##### 0.9.8 - 2015.05.12
|
||||
* fixed [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math) with negative arguments
|
||||
* added `Object#toString.toString` as fallback for [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
|
||||
|
||||
##### 0.9.7 - 2015.05.07
|
||||
* added [support DOM collections](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice#Streamlining_cross-browser_behavior) to IE8- `Array#slice`
|
||||
|
||||
##### 0.9.6 - 2015.05.01
|
||||
* added [`String#lpad`, `String#rpad`](https://github.com/zloirock/core-js/#ecmascript-7)
|
||||
|
||||
##### 0.9.5 - 2015.04.30
|
||||
* added cap for `Function#@@hasInstance`
|
||||
* some fixes and optimizations
|
||||
|
||||
##### 0.9.4 - 2015.04.27
|
||||
* fixed `RegExp` constructor
|
||||
|
||||
##### 0.9.3 - 2015.04.26
|
||||
* some fixes and optimizations
|
||||
|
||||
##### 0.9.2 - 2015.04.25
|
||||
* more correct [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking and resolving / rejection priority
|
||||
|
||||
##### 0.9.1 - 2015.04.25
|
||||
* fixed `__proto__`-based [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) subclassing in some environments
|
||||
|
||||
##### 0.9.0 - 2015.04.24
|
||||
* added correct [symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol) descriptors
|
||||
* fixed behavior `Object.{assign, create, defineProperty, defineProperties, getOwnPropertyDescriptor, getOwnPropertyDescriptors}` with symbols
|
||||
* added [single entry points](https://github.com/zloirock/core-js/#commonjs) for `Object.{create, defineProperty, defineProperties}`
|
||||
* added [`Map#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7)
|
||||
* removed non-standard methods `Object#[_]` and `Function#only` - they solves syntax problems, but now in compilers available arrows and ~~in near future will be available~~ [available](http://babeljs.io/blog/2015/05/14/function-bind/) [bind syntax](https://github.com/zenparsing/es-function-bind)
|
||||
* removed non-standard undocumented methods `Symbol.{pure, set}`
|
||||
* some fixes and internal changes
|
||||
|
||||
##### 0.8.4 - 2015.04.18
|
||||
* uses `webpack` instead of `browserify` for browser builds - more compression-friendly result
|
||||
|
||||
##### 0.8.3 - 2015.04.14
|
||||
* fixed `Array` statics with single entry points
|
||||
|
||||
##### 0.8.2 - 2015.04.13
|
||||
* [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) now also works in IE9-
|
||||
* added [`Set#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7)
|
||||
* some optimizations and fixes
|
||||
|
||||
##### 0.8.1 - 2015.04.03
|
||||
* fixed `Symbol.keyFor`
|
||||
|
||||
##### 0.8.0 - 2015.04.02
|
||||
* changed [CommonJS API](https://github.com/zloirock/core-js/#commonjs)
|
||||
* splitted and renamed some modules
|
||||
* added support ES3 environment (ES5 polyfill) to **all** default versions - size increases slightly (+ ~4kb w/o gzip), many issues disappear, if you don't need it - [simply include only required namespaces / features / modules](https://github.com/zloirock/core-js/#commonjs)
|
||||
* removed [abstract references](https://github.com/zenparsing/es-abstract-refs) support - proposal has been superseded =\
|
||||
* [`$for.isIterable` -> `core.isIterable`, `$for.getIterator` -> `core.getIterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), temporary available in old namespace
|
||||
* fixed iterators support in v8 `Promise.all` and `Promise.race`
|
||||
* many other fixes
|
||||
|
||||
##### 0.7.2 - 2015.03.09
|
||||
* some fixes
|
||||
|
||||
##### 0.7.1 - 2015.03.07
|
||||
* some fixes
|
||||
|
||||
##### 0.7.0 - 2015.03.06
|
||||
* rewritten and splitted into [CommonJS modules](https://github.com/zloirock/core-js/#commonjs)
|
||||
|
||||
##### 0.6.1 - 2015.02.24
|
||||
* fixed support [`Object.defineProperty`](https://github.com/zloirock/core-js/#ecmascript-5) with accessors on DOM elements on IE8
|
||||
|
||||
##### 0.6.0 - 2015.02.23
|
||||
* added support safe closing iteration - calling `iterator.return` on abort iteration, if it exists
|
||||
* added basic support [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking in shim
|
||||
* added [`Object.getOwnPropertyDescriptors`](https://github.com/zloirock/core-js/#ecmascript-7)
|
||||
* removed `console` cap - creates too many problems - you can use [`core.log`](https://github.com/zloirock/core-js/#console) module as that
|
||||
* restructuring [namespaces](https://github.com/zloirock/core-js/#custom-build)
|
||||
* some fixes
|
||||
|
||||
##### 0.5.4 - 2015.02.15
|
||||
* some fixes
|
||||
|
||||
##### 0.5.3 - 2015.02.14
|
||||
* added [support binary and octal literals](https://github.com/zloirock/core-js/#ecmascript-6-number) to `Number` constructor
|
||||
* added [`Date#toISOString`](https://github.com/zloirock/core-js/#ecmascript-5)
|
||||
|
||||
##### 0.5.2 - 2015.02.10
|
||||
* some fixes
|
||||
|
||||
##### 0.5.1 - 2015.02.09
|
||||
* some fixes
|
||||
|
||||
##### 0.5.0 - 2015.02.08
|
||||
* systematization of modules
|
||||
* splitted [`es6` module](https://github.com/zloirock/core-js/#ecmascript-6)
|
||||
* splitted [`console` module](https://github.com/zloirock/core-js/#console): `web.console` - only cap for missing methods, `core.log` - bound methods & additional features
|
||||
* added [`delay` method](https://github.com/zloirock/core-js/#delay)
|
||||
* some fixes
|
||||
|
||||
##### 0.4.10 - 2015.01.28
|
||||
* [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill returns array of wrapped keys
|
||||
|
||||
##### 0.4.9 - 2015.01.27
|
||||
* FF20-24 fix
|
||||
|
||||
##### 0.4.8 - 2015.01.25
|
||||
* some [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) fixes
|
||||
|
||||
##### 0.4.7 - 2015.01.25
|
||||
* added support frozen objects as [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) keys
|
||||
|
||||
##### 0.4.6 - 2015.01.21
|
||||
* added [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
|
||||
* added [`NodeList.prototype[@@iterator]`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
|
||||
* added basic `@@species` logic - getter in native constructors
|
||||
* removed `Function#by`
|
||||
* some fixes
|
||||
|
||||
##### 0.4.5 - 2015.01.16
|
||||
* some fixes
|
||||
|
||||
##### 0.4.4 - 2015.01.11
|
||||
* enabled CSP support
|
||||
|
||||
##### 0.4.3 - 2015.01.10
|
||||
* added `Function` instances `name` property for IE9+
|
||||
|
||||
##### 0.4.2 - 2015.01.10
|
||||
* `Object` static methods accept primitives
|
||||
* `RegExp` constructor can alter flags (IE9+)
|
||||
* added `Array.prototype[Symbol.unscopables]`
|
||||
|
||||
##### 0.4.1 - 2015.01.05
|
||||
* some fixes
|
||||
|
||||
##### 0.4.0 - 2015.01.03
|
||||
* added [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) module:
|
||||
* added `Reflect.apply`
|
||||
* added `Reflect.construct`
|
||||
* added `Reflect.defineProperty`
|
||||
* added `Reflect.deleteProperty`
|
||||
* added `Reflect.enumerate`
|
||||
* added `Reflect.get`
|
||||
* added `Reflect.getOwnPropertyDescriptor`
|
||||
* added `Reflect.getPrototypeOf`
|
||||
* added `Reflect.has`
|
||||
* added `Reflect.isExtensible`
|
||||
* added `Reflect.preventExtensions`
|
||||
* added `Reflect.set`
|
||||
* added `Reflect.setPrototypeOf`
|
||||
* `core-js` methods now can use external `Symbol.iterator` polyfill
|
||||
* some fixes
|
||||
|
||||
##### 0.3.3 - 2014.12.28
|
||||
* [console cap](https://github.com/zloirock/core-js/#console) excluded from node.js default builds
|
||||
|
||||
##### 0.3.2 - 2014.12.25
|
||||
* added cap for [ES5](https://github.com/zloirock/core-js/#ecmascript-5) freeze-family methods
|
||||
* fixed `console` bug
|
||||
|
||||
##### 0.3.1 - 2014.12.23
|
||||
* some fixes
|
||||
|
||||
##### 0.3.0 - 2014.12.23
|
||||
* Optimize [`Map` & `Set`](https://github.com/zloirock/core-js/#ecmascript-6-collections):
|
||||
* use entries chain on hash table
|
||||
* fast & correct iteration
|
||||
* iterators moved to [`es6`](https://github.com/zloirock/core-js/#ecmascript-6) and [`es6.collections`](https://github.com/zloirock/core-js/#ecmascript-6-collections) modules
|
||||
|
||||
##### 0.2.5 - 2014.12.20
|
||||
* `console` no longer shortcut for `console.log` (compatibility problems)
|
||||
* some fixes
|
||||
|
||||
##### 0.2.4 - 2014.12.17
|
||||
* better compliance of ES6
|
||||
* added [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) (IE10+)
|
||||
* some fixes
|
||||
|
||||
##### 0.2.3 - 2014.12.15
|
||||
* [Symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol):
|
||||
* added option to disable addition setter to `Object.prototype` for Symbol polyfill:
|
||||
* added `Symbol.useSimple`
|
||||
* added `Symbol.useSetter`
|
||||
* added cap for well-known Symbols:
|
||||
* added `Symbol.hasInstance`
|
||||
* added `Symbol.isConcatSpreadable`
|
||||
* added `Symbol.match`
|
||||
* added `Symbol.replace`
|
||||
* added `Symbol.search`
|
||||
* added `Symbol.species`
|
||||
* added `Symbol.split`
|
||||
* added `Symbol.toPrimitive`
|
||||
* added `Symbol.unscopables`
|
||||
|
||||
##### 0.2.2 - 2014.12.13
|
||||
* added [`RegExp#flags`](https://github.com/zloirock/core-js/#ecmascript-6-regexp) ([December 2014 Draft Rev 29](http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts#december_6_2014_draft_rev_29))
|
||||
* added [`String.raw`](https://github.com/zloirock/core-js/#ecmascript-6-string)
|
||||
|
||||
##### 0.2.1 - 2014.12.12
|
||||
* repair converting -0 to +0 in [native collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
|
||||
|
||||
##### 0.2.0 - 2014.12.06
|
||||
* added [`es7.proposals`](https://github.com/zloirock/core-js/#ecmascript-7) and [`es7.abstract-refs`](https://github.com/zenparsing/es-abstract-refs) modules
|
||||
* added [`String#at`](https://github.com/zloirock/core-js/#ecmascript-7)
|
||||
* added real [`String Iterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), older versions used Array Iterator
|
||||
* added abstract references support:
|
||||
* added `Symbol.referenceGet`
|
||||
* added `Symbol.referenceSet`
|
||||
* added `Symbol.referenceDelete`
|
||||
* added `Function#@@referenceGet`
|
||||
* added `Map#@@referenceGet`
|
||||
* added `Map#@@referenceSet`
|
||||
* added `Map#@@referenceDelete`
|
||||
* added `WeakMap#@@referenceGet`
|
||||
* added `WeakMap#@@referenceSet`
|
||||
* added `WeakMap#@@referenceDelete`
|
||||
* added `Dict.{...methods}[@@referenceGet]`
|
||||
* removed deprecated `.contains` methods
|
||||
* some fixes
|
||||
|
||||
##### 0.1.5 - 2014.12.01
|
||||
* added [`Array#copyWithin`](https://github.com/zloirock/core-js/#ecmascript-6-array)
|
||||
* added [`String#codePointAt`](https://github.com/zloirock/core-js/#ecmascript-6-string)
|
||||
* added [`String.fromCodePoint`](https://github.com/zloirock/core-js/#ecmascript-6-string)
|
||||
|
||||
##### 0.1.4 - 2014.11.27
|
||||
* added [`Dict.mapPairs`](https://github.com/zloirock/core-js/#dict)
|
||||
|
||||
##### 0.1.3 - 2014.11.20
|
||||
* [TC39 November meeting](https://github.com/rwaldron/tc39-notes/tree/master/es6/2014-11):
|
||||
* [`.contains` -> `.includes`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-18.md#51--44-arrayprototypecontains-and-stringprototypecontains)
|
||||
* `String#contains` -> [`String#includes`](https://github.com/zloirock/core-js/#ecmascript-6-string)
|
||||
* `Array#contains` -> [`Array#includes`](https://github.com/zloirock/core-js/#ecmascript-7)
|
||||
* `Dict.contains` -> [`Dict.includes`](https://github.com/zloirock/core-js/#dict)
|
||||
* [removed `WeakMap#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
|
||||
* [removed `WeakSet#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
|
||||
|
||||
##### 0.1.2 - 2014.11.19
|
||||
* `Map` & `Set` bug fix
|
||||
|
||||
##### 0.1.1 - 2014.11.18
|
||||
* public release
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/Gruntfile.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/Gruntfile.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('LiveScript');
|
||||
module.exports = require('./build/Gruntfile');
|
19
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/LICENSE
generated
vendored
Normal file
19
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
Copyright (c) 2015 Denis Pushkarev
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
34
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/bower.json
generated
vendored
Normal file
34
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/bower.json
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "core.js",
|
||||
"main": "client/core.js",
|
||||
"version": "1.2.7",
|
||||
"description": "Standard Library",
|
||||
"keywords": [
|
||||
"ES6",
|
||||
"ECMAScript 6",
|
||||
"ES7",
|
||||
"ECMAScript 7",
|
||||
"Map",
|
||||
"Set",
|
||||
"WeakMap",
|
||||
"WeakSet",
|
||||
"Dict",
|
||||
"Promise",
|
||||
"Symbol",
|
||||
"console"
|
||||
],
|
||||
"authors": [
|
||||
"Denis Pushkarev <zloirock@zloirock.ru> (http://zloirock.ru/)"
|
||||
],
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/zloirock/core-js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zloirock/core-js.git"
|
||||
},
|
||||
"ignore": [
|
||||
"build",
|
||||
"node_modules",
|
||||
"tests"
|
||||
]
|
||||
}
|
84
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/build/Gruntfile.ls
generated
vendored
Normal file
84
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/build/Gruntfile.ls
generated
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
require! <[./build fs ./config]>
|
||||
library-tests = <[client/library.js tests/helpers.js tests/library.js]>map -> src: it
|
||||
module.exports = (grunt)->
|
||||
grunt.loadNpmTasks \grunt-contrib-clean
|
||||
grunt.loadNpmTasks \grunt-contrib-copy
|
||||
grunt.loadNpmTasks \grunt-contrib-uglify
|
||||
grunt.loadNpmTasks \grunt-contrib-watch
|
||||
grunt.loadNpmTasks \grunt-livescript
|
||||
grunt.loadNpmTasks \grunt-karma
|
||||
grunt.initConfig do
|
||||
pkg: grunt.file.readJSON './package.json'
|
||||
uglify: build:
|
||||
files: '<%=grunt.option("path")%>.min.js': '<%=grunt.option("path")%>.js'
|
||||
options:
|
||||
mangle: {+sort, +keep_fnames}
|
||||
compress: {+pure_getters, +keep_fargs, +keep_fnames}
|
||||
sourceMap: on
|
||||
banner: config.banner
|
||||
livescript: src: files:
|
||||
'./tests/helpers.js': './tests/helpers/*'
|
||||
'./tests/tests.js': './tests/tests/*'
|
||||
'./tests/library.js': './tests/library/*'
|
||||
'./tests/es.js': './tests/tests/es*'
|
||||
'./tests/experimental.js': './tests/experimental/*'
|
||||
'./build/index.js': './build/build.ls*'
|
||||
clean: <[./library]>
|
||||
copy: lib: files:
|
||||
* expand: on
|
||||
cwd: './'
|
||||
src: <[es5/** es6/** es7/** js/** web/** core/** fn/** index.js shim.js]>
|
||||
dest: './library/'
|
||||
* expand: on
|
||||
cwd: './'
|
||||
src: <[modules/*]>
|
||||
dest: './library/'
|
||||
filter: \isFile
|
||||
* expand: on
|
||||
cwd: './modules/library/'
|
||||
src: '*'
|
||||
dest: './library/modules/'
|
||||
watch:
|
||||
core:
|
||||
files: './modules/*'
|
||||
tasks: \default
|
||||
tests:
|
||||
files: './tests/tests/*'
|
||||
tasks: \livescript
|
||||
karma:
|
||||
'options':
|
||||
configFile: './tests/karma.conf.js'
|
||||
browsers: <[PhantomJS]>
|
||||
singleRun: on
|
||||
'continuous': {}
|
||||
'continuous-library':
|
||||
files: library-tests
|
||||
grunt.registerTask \build (options)->
|
||||
done = @async!
|
||||
err, it <- build {
|
||||
modules: (options || 'es5,es6,es7,js,web,core')split \,
|
||||
blacklist: (grunt.option(\blacklist) || '')split \,
|
||||
library: !!grunt.option \library
|
||||
}
|
||||
if err
|
||||
console.error err
|
||||
process.exit 1
|
||||
grunt.option(\path) || grunt.option(\path, './custom')
|
||||
fs.writeFile grunt.option(\path) + '.js', it, done
|
||||
grunt.registerTask \client ->
|
||||
grunt.option \library ''
|
||||
grunt.option \path './client/core'
|
||||
grunt.task.run <[build:es5,es6,es7,js,web,core uglify]>
|
||||
grunt.registerTask \library ->
|
||||
grunt.option \library 'true'
|
||||
grunt.option \path './client/library'
|
||||
grunt.task.run <[build:es5,es6,es7,js,web,core uglify]>
|
||||
grunt.registerTask \shim ->
|
||||
grunt.option \library ''
|
||||
grunt.option \path './client/shim'
|
||||
grunt.task.run <[build:es5,es6,es7,js,web uglify]>
|
||||
grunt.registerTask \e ->
|
||||
grunt.option \library ''>
|
||||
grunt.option \path './client/core'
|
||||
grunt.task.run <[build:es5,es6,es7,js,web,core,exp uglify]>
|
||||
grunt.registerTask \default <[clean copy client library shim]>
|
218
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/build/build.ls
generated
vendored
Normal file
218
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/build/build.ls
generated
vendored
Normal file
@@ -0,0 +1,218 @@
|
||||
require! {'./config': {banner}, fs: {readFile, writeFile, unlink}, path, webpack}
|
||||
|
||||
list = <[
|
||||
es5
|
||||
es6.symbol
|
||||
es6.object.assign
|
||||
es6.object.is
|
||||
es6.object.set-prototype-of
|
||||
es6.object.to-string
|
||||
es6.object.freeze
|
||||
es6.object.seal
|
||||
es6.object.prevent-extensions
|
||||
es6.object.is-frozen
|
||||
es6.object.is-sealed
|
||||
es6.object.is-extensible
|
||||
es6.object.get-own-property-descriptor
|
||||
es6.object.get-prototype-of
|
||||
es6.object.keys
|
||||
es6.object.get-own-property-names
|
||||
es6.function.name
|
||||
es6.function.has-instance
|
||||
es6.number.constructor
|
||||
es6.number.epsilon
|
||||
es6.number.is-finite
|
||||
es6.number.is-integer
|
||||
es6.number.is-nan
|
||||
es6.number.is-safe-integer
|
||||
es6.number.max-safe-integer
|
||||
es6.number.min-safe-integer
|
||||
es6.number.parse-float
|
||||
es6.number.parse-int
|
||||
es6.math.acosh
|
||||
es6.math.asinh
|
||||
es6.math.atanh
|
||||
es6.math.cbrt
|
||||
es6.math.clz32
|
||||
es6.math.cosh
|
||||
es6.math.expm1
|
||||
es6.math.fround
|
||||
es6.math.hypot
|
||||
es6.math.imul
|
||||
es6.math.log10
|
||||
es6.math.log1p
|
||||
es6.math.log2
|
||||
es6.math.sign
|
||||
es6.math.sinh
|
||||
es6.math.tanh
|
||||
es6.math.trunc
|
||||
es6.string.from-code-point
|
||||
es6.string.raw
|
||||
es6.string.trim
|
||||
es6.string.code-point-at
|
||||
es6.string.ends-with
|
||||
es6.string.includes
|
||||
es6.string.repeat
|
||||
es6.string.starts-with
|
||||
es6.string.iterator
|
||||
es6.array.from
|
||||
es6.array.of
|
||||
es6.array.iterator
|
||||
es6.array.species
|
||||
es6.array.copy-within
|
||||
es6.array.fill
|
||||
es6.array.find
|
||||
es6.array.find-index
|
||||
es6.regexp.constructor
|
||||
es6.regexp.flags
|
||||
es6.regexp.match
|
||||
es6.regexp.replace
|
||||
es6.regexp.search
|
||||
es6.regexp.split
|
||||
es6.promise
|
||||
es6.map
|
||||
es6.set
|
||||
es6.weak-map
|
||||
es6.weak-set
|
||||
es6.reflect.apply
|
||||
es6.reflect.construct
|
||||
es6.reflect.define-property
|
||||
es6.reflect.delete-property
|
||||
es6.reflect.enumerate
|
||||
es6.reflect.get
|
||||
es6.reflect.get-own-property-descriptor
|
||||
es6.reflect.get-prototype-of
|
||||
es6.reflect.has
|
||||
es6.reflect.is-extensible
|
||||
es6.reflect.own-keys
|
||||
es6.reflect.prevent-extensions
|
||||
es6.reflect.set
|
||||
es6.reflect.set-prototype-of
|
||||
es6.date.to-string
|
||||
es6.typed.array-buffer
|
||||
es6.typed.data-view
|
||||
es6.typed.int8-array
|
||||
es6.typed.uint8-array
|
||||
es6.typed.uint8-clamped-array
|
||||
es6.typed.int16-array
|
||||
es6.typed.uint16-array
|
||||
es6.typed.int32-array
|
||||
es6.typed.uint32-array
|
||||
es6.typed.float32-array
|
||||
es6.typed.float64-array
|
||||
es7.array.includes
|
||||
es7.string.at
|
||||
es7.string.pad-left
|
||||
es7.string.pad-right
|
||||
es7.string.trim-left
|
||||
es7.string.trim-right
|
||||
es7.regexp.escape
|
||||
es7.object.get-own-property-descriptors
|
||||
es7.object.values
|
||||
es7.object.entries
|
||||
es7.map.to-json
|
||||
es7.set.to-json
|
||||
web.immediate
|
||||
web.dom.iterable
|
||||
web.timers
|
||||
core.dict
|
||||
core.get-iterator-method
|
||||
core.get-iterator
|
||||
core.is-iterable
|
||||
core.delay
|
||||
core.function.part
|
||||
core.object.is-object
|
||||
core.object.classof
|
||||
core.object.define
|
||||
core.object.make
|
||||
core.number.iterator
|
||||
core.string.escape-html
|
||||
core.string.unescape-html
|
||||
core.log
|
||||
js.array.statics
|
||||
]>
|
||||
|
||||
experimental = <[
|
||||
es6.date.to-string
|
||||
es6.typed.array-buffer
|
||||
es6.typed.data-view
|
||||
es6.typed.int8-array
|
||||
es6.typed.uint8-array
|
||||
es6.typed.uint8-clamped-array
|
||||
es6.typed.int16-array
|
||||
es6.typed.uint16-array
|
||||
es6.typed.int32-array
|
||||
es6.typed.uint32-array
|
||||
es6.typed.float32-array
|
||||
es6.typed.float64-array
|
||||
]>
|
||||
|
||||
libraryBlacklist = <[
|
||||
es6.object.to-string
|
||||
es6.function.name
|
||||
es6.regexp.constructor
|
||||
es6.regexp.flags
|
||||
es6.regexp.match
|
||||
es6.regexp.replace
|
||||
es6.regexp.search
|
||||
es6.regexp.split
|
||||
es6.number.constructor
|
||||
]>
|
||||
|
||||
es5SpecialCase = <[
|
||||
es6.object.freeze
|
||||
es6.object.seal
|
||||
es6.object.prevent-extensions
|
||||
es6.object.is-frozen
|
||||
es6.object.is-sealed
|
||||
es6.object.is-extensible
|
||||
es6.string.trim
|
||||
]>
|
||||
|
||||
module.exports = ({modules = [], blacklist = [], library = no}, next)!->
|
||||
let @ = modules.reduce ((memo, it)-> memo[it] = on; memo), {}
|
||||
check = (err)->
|
||||
if err
|
||||
next err, ''
|
||||
on
|
||||
|
||||
if @exp => for experimental => @[..] = on
|
||||
if @es5 => for es5SpecialCase => @[..] = on
|
||||
for ns of @
|
||||
if @[ns]
|
||||
for name in list
|
||||
if name.indexOf("#ns.") is 0 and name not in experimental
|
||||
@[name] = on
|
||||
|
||||
if library => blacklist ++= libraryBlacklist
|
||||
for ns in blacklist
|
||||
for name in list
|
||||
if name is ns or name.indexOf("#ns.") is 0
|
||||
@[name] = no
|
||||
|
||||
TARGET = "./__tmp#{ Math.random! }__.js"
|
||||
err, info <~! webpack do
|
||||
entry: list.filter(~> @[it]).map ~>
|
||||
path.join(__dirname, '../', "#{ if library => '/library' else '' }/modules/#it")
|
||||
output:
|
||||
path: ''
|
||||
filename: TARGET
|
||||
if check err => return
|
||||
err, script <~! readFile TARGET
|
||||
if check err => return
|
||||
err <~! unlink TARGET
|
||||
if check err => return
|
||||
|
||||
next null """
|
||||
#banner
|
||||
!function(__e, __g, undefined){
|
||||
'use strict';
|
||||
#script
|
||||
// CommonJS export
|
||||
if(typeof module != 'undefined' && module.exports)module.exports = __e;
|
||||
// RequireJS export
|
||||
else if(typeof define == 'function' && define.amd)define(function(){return __e});
|
||||
// Export to global object
|
||||
else __g.core = __e;
|
||||
}(1, 1);
|
||||
"""
|
8
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/build/config.js
generated
vendored
Normal file
8
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/build/config.js
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
module.exports = {
|
||||
banner: '/**\n' +
|
||||
' * core-js ' + require('../package').version + '\n' +
|
||||
' * https://github.com/zloirock/core-js\n' +
|
||||
' * License: http://rock.mit-license.org\n' +
|
||||
' * © ' + new Date().getFullYear() + ' Denis Pushkarev\n' +
|
||||
' */'
|
||||
};
|
98
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/build/index.js
generated
vendored
Normal file
98
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/build/index.js
generated
vendored
Normal file
@@ -0,0 +1,98 @@
|
||||
// Generated by LiveScript 1.3.1
|
||||
(function(){
|
||||
var banner, ref$, readFile, writeFile, unlink, path, webpack, list, experimental, libraryBlacklist, es5SpecialCase;
|
||||
banner = require('./config').banner;
|
||||
ref$ = require('fs'), readFile = ref$.readFile, writeFile = ref$.writeFile, unlink = ref$.unlink;
|
||||
path = require('path');
|
||||
webpack = require('webpack');
|
||||
list = ['es5', 'es6.symbol', 'es6.object.assign', 'es6.object.is', 'es6.object.set-prototype-of', 'es6.object.to-string', 'es6.object.freeze', 'es6.object.seal', 'es6.object.prevent-extensions', 'es6.object.is-frozen', 'es6.object.is-sealed', 'es6.object.is-extensible', 'es6.object.get-own-property-descriptor', 'es6.object.get-prototype-of', 'es6.object.keys', 'es6.object.get-own-property-names', 'es6.function.name', 'es6.function.has-instance', 'es6.number.constructor', 'es6.number.epsilon', 'es6.number.is-finite', 'es6.number.is-integer', 'es6.number.is-nan', 'es6.number.is-safe-integer', 'es6.number.max-safe-integer', 'es6.number.min-safe-integer', 'es6.number.parse-float', 'es6.number.parse-int', 'es6.math.acosh', 'es6.math.asinh', 'es6.math.atanh', 'es6.math.cbrt', 'es6.math.clz32', 'es6.math.cosh', 'es6.math.expm1', 'es6.math.fround', 'es6.math.hypot', 'es6.math.imul', 'es6.math.log10', 'es6.math.log1p', 'es6.math.log2', 'es6.math.sign', 'es6.math.sinh', 'es6.math.tanh', 'es6.math.trunc', 'es6.string.from-code-point', 'es6.string.raw', 'es6.string.trim', 'es6.string.code-point-at', 'es6.string.ends-with', 'es6.string.includes', 'es6.string.repeat', 'es6.string.starts-with', 'es6.string.iterator', 'es6.array.from', 'es6.array.of', 'es6.array.iterator', 'es6.array.species', 'es6.array.copy-within', 'es6.array.fill', 'es6.array.find', 'es6.array.find-index', 'es6.regexp.constructor', 'es6.regexp.flags', 'es6.regexp.match', 'es6.regexp.replace', 'es6.regexp.search', 'es6.regexp.split', 'es6.promise', 'es6.map', 'es6.set', 'es6.weak-map', 'es6.weak-set', 'es6.reflect.apply', 'es6.reflect.construct', 'es6.reflect.define-property', 'es6.reflect.delete-property', 'es6.reflect.enumerate', 'es6.reflect.get', 'es6.reflect.get-own-property-descriptor', 'es6.reflect.get-prototype-of', 'es6.reflect.has', 'es6.reflect.is-extensible', 'es6.reflect.own-keys', 'es6.reflect.prevent-extensions', 'es6.reflect.set', 'es6.reflect.set-prototype-of', 'es6.date.to-string', 'es6.typed.array-buffer', 'es6.typed.data-view', 'es6.typed.int8-array', 'es6.typed.uint8-array', 'es6.typed.uint8-clamped-array', 'es6.typed.int16-array', 'es6.typed.uint16-array', 'es6.typed.int32-array', 'es6.typed.uint32-array', 'es6.typed.float32-array', 'es6.typed.float64-array', 'es7.array.includes', 'es7.string.at', 'es7.string.pad-left', 'es7.string.pad-right', 'es7.string.trim-left', 'es7.string.trim-right', 'es7.regexp.escape', 'es7.object.get-own-property-descriptors', 'es7.object.values', 'es7.object.entries', 'es7.map.to-json', 'es7.set.to-json', 'web.immediate', 'web.dom.iterable', 'web.timers', 'core.dict', 'core.get-iterator-method', 'core.get-iterator', 'core.is-iterable', 'core.delay', 'core.function.part', 'core.object.is-object', 'core.object.classof', 'core.object.define', 'core.object.make', 'core.number.iterator', 'core.string.escape-html', 'core.string.unescape-html', 'core.log', 'js.array.statics'];
|
||||
experimental = ['es6.date.to-string', 'es6.typed.array-buffer', 'es6.typed.data-view', 'es6.typed.int8-array', 'es6.typed.uint8-array', 'es6.typed.uint8-clamped-array', 'es6.typed.int16-array', 'es6.typed.uint16-array', 'es6.typed.int32-array', 'es6.typed.uint32-array', 'es6.typed.float32-array', 'es6.typed.float64-array'];
|
||||
libraryBlacklist = ['es6.object.to-string', 'es6.function.name', 'es6.regexp.constructor', 'es6.regexp.flags', 'es6.regexp.match', 'es6.regexp.replace', 'es6.regexp.search', 'es6.regexp.split', 'es6.number.constructor'];
|
||||
es5SpecialCase = ['es6.object.freeze', 'es6.object.seal', 'es6.object.prevent-extensions', 'es6.object.is-frozen', 'es6.object.is-sealed', 'es6.object.is-extensible', 'es6.string.trim'];
|
||||
module.exports = function(arg$, next){
|
||||
var modules, ref$, blacklist, library;
|
||||
modules = (ref$ = arg$.modules) != null
|
||||
? ref$
|
||||
: [], blacklist = (ref$ = arg$.blacklist) != null
|
||||
? ref$
|
||||
: [], library = (ref$ = arg$.library) != null ? ref$ : false;
|
||||
(function(){
|
||||
var check, i$, x$, ref$, len$, y$, ns, name, j$, len1$, TARGET, this$ = this;
|
||||
check = function(err){
|
||||
if (err) {
|
||||
next(err, '');
|
||||
return true;
|
||||
}
|
||||
};
|
||||
if (this.exp) {
|
||||
for (i$ = 0, len$ = (ref$ = experimental).length; i$ < len$; ++i$) {
|
||||
x$ = ref$[i$];
|
||||
this[x$] = true;
|
||||
}
|
||||
}
|
||||
if (this.es5) {
|
||||
for (i$ = 0, len$ = (ref$ = es5SpecialCase).length; i$ < len$; ++i$) {
|
||||
y$ = ref$[i$];
|
||||
this[y$] = true;
|
||||
}
|
||||
}
|
||||
for (ns in this) {
|
||||
if (this[ns]) {
|
||||
for (i$ = 0, len$ = (ref$ = list).length; i$ < len$; ++i$) {
|
||||
name = ref$[i$];
|
||||
if (name.indexOf(ns + ".") === 0 && !in$(name, experimental)) {
|
||||
this[name] = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (library) {
|
||||
blacklist = blacklist.concat(libraryBlacklist);
|
||||
}
|
||||
for (i$ = 0, len$ = blacklist.length; i$ < len$; ++i$) {
|
||||
ns = blacklist[i$];
|
||||
for (j$ = 0, len1$ = (ref$ = list).length; j$ < len1$; ++j$) {
|
||||
name = ref$[j$];
|
||||
if (name === ns || name.indexOf(ns + ".") === 0) {
|
||||
this[name] = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
TARGET = "./__tmp" + Math.random() + "__.js";
|
||||
webpack({
|
||||
entry: list.filter(function(it){
|
||||
return this$[it];
|
||||
}).map(function(it){
|
||||
return path.join(__dirname, '../', (library ? '/library' : '') + "/modules/" + it);
|
||||
}),
|
||||
output: {
|
||||
path: '',
|
||||
filename: TARGET
|
||||
}
|
||||
}, function(err, info){
|
||||
if (check(err)) {
|
||||
return;
|
||||
}
|
||||
readFile(TARGET, function(err, script){
|
||||
if (check(err)) {
|
||||
return;
|
||||
}
|
||||
unlink(TARGET, function(err){
|
||||
if (check(err)) {
|
||||
return;
|
||||
}
|
||||
next(null, "" + banner + "\n!function(__e, __g, undefined){\n'use strict';\n" + script + "\n// CommonJS export\nif(typeof module != 'undefined' && module.exports)module.exports = __e;\n// RequireJS export\nelse if(typeof define == 'function' && define.amd)define(function(){return __e});\n// Export to global object\nelse __g.core = __e;\n}(1, 1);");
|
||||
});
|
||||
});
|
||||
});
|
||||
}.call(modules.reduce(function(memo, it){
|
||||
memo[it] = true;
|
||||
return memo;
|
||||
}, {})));
|
||||
};
|
||||
function in$(x, xs){
|
||||
var i = -1, l = xs.length >>> 0;
|
||||
while (++i < l) if (x === xs[i]) return true;
|
||||
return false;
|
||||
}
|
||||
}).call(this);
|
4910
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/core.js
generated
vendored
Normal file
4910
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/core.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
9
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/core.min.js
generated
vendored
Normal file
9
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/core.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/core.min.js.map
generated
vendored
Normal file
1
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/core.min.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
4550
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/library.js
generated
vendored
Normal file
4550
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/library.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
9
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/library.min.js
generated
vendored
Normal file
9
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/library.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/library.min.js.map
generated
vendored
Normal file
1
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/library.min.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
4551
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/shim.js
generated
vendored
Normal file
4551
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/shim.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
9
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/shim.min.js
generated
vendored
Normal file
9
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/shim.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/shim.min.js.map
generated
vendored
Normal file
1
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/client/shim.min.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/_.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/_.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.function.part');
|
||||
module.exports = require('../modules/$.core')._;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/delay.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/delay.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.delay');
|
||||
module.exports = require('../modules/$.core').delay;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/dict.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/dict.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.dict');
|
||||
module.exports = require('../modules/$.core').Dict;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/function.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/function.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.function.part');
|
||||
module.exports = require('../modules/$.core').Function;
|
15
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/index.js
generated
vendored
Normal file
15
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/index.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
require('../modules/core.dict');
|
||||
require('../modules/core.get-iterator-method');
|
||||
require('../modules/core.get-iterator');
|
||||
require('../modules/core.is-iterable');
|
||||
require('../modules/core.delay');
|
||||
require('../modules/core.function.part');
|
||||
require('../modules/core.object.is-object');
|
||||
require('../modules/core.object.classof');
|
||||
require('../modules/core.object.define');
|
||||
require('../modules/core.object.make');
|
||||
require('../modules/core.number.iterator');
|
||||
require('../modules/core.string.escape-html');
|
||||
require('../modules/core.string.unescape-html');
|
||||
require('../modules/core.log');
|
||||
module.exports = require('../modules/$.core');
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/log.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/log.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.log');
|
||||
module.exports = require('../modules/$.core').log;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/number.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/number.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.number.iterator');
|
||||
module.exports = require('../modules/$.core').Number;
|
5
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/object.js
generated
vendored
Normal file
5
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/object.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
require('../modules/core.object.is-object');
|
||||
require('../modules/core.object.classof');
|
||||
require('../modules/core.object.define');
|
||||
require('../modules/core.object.make');
|
||||
module.exports = require('../modules/$.core').Object;
|
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/string.js
generated
vendored
Normal file
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/core/string.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
require('../modules/core.string.escape-html');
|
||||
require('../modules/core.string.unescape-html');
|
||||
module.exports = require('../modules/$.core').String;
|
9
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es5/index.js
generated
vendored
Normal file
9
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es5/index.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
require('../modules/es5');
|
||||
require('../modules/es6.object.freeze');
|
||||
require('../modules/es6.object.seal');
|
||||
require('../modules/es6.object.prevent-extensions');
|
||||
require('../modules/es6.object.is-frozen');
|
||||
require('../modules/es6.object.is-sealed');
|
||||
require('../modules/es6.object.is-extensible');
|
||||
require('../modules/es6.string.trim');
|
||||
module.exports = require('../modules/$.core');
|
10
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/array.js
generated
vendored
Normal file
10
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/array.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/es6.array.from');
|
||||
require('../modules/es6.array.of');
|
||||
require('../modules/es6.array.species');
|
||||
require('../modules/es6.array.iterator');
|
||||
require('../modules/es6.array.copy-within');
|
||||
require('../modules/es6.array.fill');
|
||||
require('../modules/es6.array.find');
|
||||
require('../modules/es6.array.find-index');
|
||||
module.exports = require('../modules/$.core').Array;
|
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/function.js
generated
vendored
Normal file
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/function.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
require('../modules/es6.function.name');
|
||||
require('../modules/es6.function.has-instance');
|
||||
module.exports = require('../modules/$.core').Function;
|
87
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/index.js
generated
vendored
Normal file
87
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/index.js
generated
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
require('../modules/es6.symbol');
|
||||
require('../modules/es6.object.assign');
|
||||
require('../modules/es6.object.is');
|
||||
require('../modules/es6.object.set-prototype-of');
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.object.freeze');
|
||||
require('../modules/es6.object.seal');
|
||||
require('../modules/es6.object.prevent-extensions');
|
||||
require('../modules/es6.object.is-frozen');
|
||||
require('../modules/es6.object.is-sealed');
|
||||
require('../modules/es6.object.is-extensible');
|
||||
require('../modules/es6.object.get-own-property-descriptor');
|
||||
require('../modules/es6.object.get-prototype-of');
|
||||
require('../modules/es6.object.keys');
|
||||
require('../modules/es6.object.get-own-property-names');
|
||||
require('../modules/es6.function.name');
|
||||
require('../modules/es6.function.has-instance');
|
||||
require('../modules/es6.number.constructor');
|
||||
require('../modules/es6.number.epsilon');
|
||||
require('../modules/es6.number.is-finite');
|
||||
require('../modules/es6.number.is-integer');
|
||||
require('../modules/es6.number.is-nan');
|
||||
require('../modules/es6.number.is-safe-integer');
|
||||
require('../modules/es6.number.max-safe-integer');
|
||||
require('../modules/es6.number.min-safe-integer');
|
||||
require('../modules/es6.number.parse-float');
|
||||
require('../modules/es6.number.parse-int');
|
||||
require('../modules/es6.math.acosh');
|
||||
require('../modules/es6.math.asinh');
|
||||
require('../modules/es6.math.atanh');
|
||||
require('../modules/es6.math.cbrt');
|
||||
require('../modules/es6.math.clz32');
|
||||
require('../modules/es6.math.cosh');
|
||||
require('../modules/es6.math.expm1');
|
||||
require('../modules/es6.math.fround');
|
||||
require('../modules/es6.math.hypot');
|
||||
require('../modules/es6.math.imul');
|
||||
require('../modules/es6.math.log10');
|
||||
require('../modules/es6.math.log1p');
|
||||
require('../modules/es6.math.log2');
|
||||
require('../modules/es6.math.sign');
|
||||
require('../modules/es6.math.sinh');
|
||||
require('../modules/es6.math.tanh');
|
||||
require('../modules/es6.math.trunc');
|
||||
require('../modules/es6.string.from-code-point');
|
||||
require('../modules/es6.string.raw');
|
||||
require('../modules/es6.string.trim');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/es6.string.code-point-at');
|
||||
require('../modules/es6.string.ends-with');
|
||||
require('../modules/es6.string.includes');
|
||||
require('../modules/es6.string.repeat');
|
||||
require('../modules/es6.string.starts-with');
|
||||
require('../modules/es6.array.from');
|
||||
require('../modules/es6.array.of');
|
||||
require('../modules/es6.array.species');
|
||||
require('../modules/es6.array.iterator');
|
||||
require('../modules/es6.array.copy-within');
|
||||
require('../modules/es6.array.fill');
|
||||
require('../modules/es6.array.find');
|
||||
require('../modules/es6.array.find-index');
|
||||
require('../modules/es6.regexp.constructor');
|
||||
require('../modules/es6.regexp.flags');
|
||||
require('../modules/es6.regexp.match');
|
||||
require('../modules/es6.regexp.replace');
|
||||
require('../modules/es6.regexp.search');
|
||||
require('../modules/es6.regexp.split');
|
||||
require('../modules/es6.promise');
|
||||
require('../modules/es6.map');
|
||||
require('../modules/es6.set');
|
||||
require('../modules/es6.weak-map');
|
||||
require('../modules/es6.weak-set');
|
||||
require('../modules/es6.reflect.apply');
|
||||
require('../modules/es6.reflect.construct');
|
||||
require('../modules/es6.reflect.define-property');
|
||||
require('../modules/es6.reflect.delete-property');
|
||||
require('../modules/es6.reflect.enumerate');
|
||||
require('../modules/es6.reflect.get');
|
||||
require('../modules/es6.reflect.get-own-property-descriptor');
|
||||
require('../modules/es6.reflect.get-prototype-of');
|
||||
require('../modules/es6.reflect.has');
|
||||
require('../modules/es6.reflect.is-extensible');
|
||||
require('../modules/es6.reflect.own-keys');
|
||||
require('../modules/es6.reflect.prevent-extensions');
|
||||
require('../modules/es6.reflect.set');
|
||||
require('../modules/es6.reflect.set-prototype-of');
|
||||
module.exports = require('../modules/$.core');
|
5
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/map.js
generated
vendored
Normal file
5
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/map.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.map');
|
||||
module.exports = require('../modules/$.core').Map;
|
18
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/math.js
generated
vendored
Normal file
18
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/math.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
require('../modules/es6.math.acosh');
|
||||
require('../modules/es6.math.asinh');
|
||||
require('../modules/es6.math.atanh');
|
||||
require('../modules/es6.math.cbrt');
|
||||
require('../modules/es6.math.clz32');
|
||||
require('../modules/es6.math.cosh');
|
||||
require('../modules/es6.math.expm1');
|
||||
require('../modules/es6.math.fround');
|
||||
require('../modules/es6.math.hypot');
|
||||
require('../modules/es6.math.imul');
|
||||
require('../modules/es6.math.log10');
|
||||
require('../modules/es6.math.log1p');
|
||||
require('../modules/es6.math.log2');
|
||||
require('../modules/es6.math.sign');
|
||||
require('../modules/es6.math.sinh');
|
||||
require('../modules/es6.math.tanh');
|
||||
require('../modules/es6.math.trunc');
|
||||
module.exports = require('../modules/$.core').Math;
|
11
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/number.js
generated
vendored
Normal file
11
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/number.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
require('../modules/es6.number.constructor');
|
||||
require('../modules/es6.number.epsilon');
|
||||
require('../modules/es6.number.is-finite');
|
||||
require('../modules/es6.number.is-integer');
|
||||
require('../modules/es6.number.is-nan');
|
||||
require('../modules/es6.number.is-safe-integer');
|
||||
require('../modules/es6.number.max-safe-integer');
|
||||
require('../modules/es6.number.min-safe-integer');
|
||||
require('../modules/es6.number.parse-float');
|
||||
require('../modules/es6.number.parse-int');
|
||||
module.exports = require('../modules/$.core').Number;
|
17
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/object.js
generated
vendored
Normal file
17
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/object.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
require('../modules/es6.symbol');
|
||||
require('../modules/es6.object.assign');
|
||||
require('../modules/es6.object.is');
|
||||
require('../modules/es6.object.set-prototype-of');
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.object.freeze');
|
||||
require('../modules/es6.object.seal');
|
||||
require('../modules/es6.object.prevent-extensions');
|
||||
require('../modules/es6.object.is-frozen');
|
||||
require('../modules/es6.object.is-sealed');
|
||||
require('../modules/es6.object.is-extensible');
|
||||
require('../modules/es6.object.get-own-property-descriptor');
|
||||
require('../modules/es6.object.get-prototype-of');
|
||||
require('../modules/es6.object.keys');
|
||||
require('../modules/es6.object.get-own-property-names');
|
||||
|
||||
module.exports = require('../modules/$.core').Object;
|
5
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/promise.js
generated
vendored
Normal file
5
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/promise.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.promise');
|
||||
module.exports = require('../modules/$.core').Promise;
|
15
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/reflect.js
generated
vendored
Normal file
15
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/reflect.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
require('../modules/es6.reflect.apply');
|
||||
require('../modules/es6.reflect.construct');
|
||||
require('../modules/es6.reflect.define-property');
|
||||
require('../modules/es6.reflect.delete-property');
|
||||
require('../modules/es6.reflect.enumerate');
|
||||
require('../modules/es6.reflect.get');
|
||||
require('../modules/es6.reflect.get-own-property-descriptor');
|
||||
require('../modules/es6.reflect.get-prototype-of');
|
||||
require('../modules/es6.reflect.has');
|
||||
require('../modules/es6.reflect.is-extensible');
|
||||
require('../modules/es6.reflect.own-keys');
|
||||
require('../modules/es6.reflect.prevent-extensions');
|
||||
require('../modules/es6.reflect.set');
|
||||
require('../modules/es6.reflect.set-prototype-of');
|
||||
module.exports = require('../modules/$.core').Reflect;
|
7
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/regexp.js
generated
vendored
Normal file
7
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/regexp.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
require('../modules/es6.regexp.constructor');
|
||||
require('../modules/es6.regexp.flags');
|
||||
require('../modules/es6.regexp.match');
|
||||
require('../modules/es6.regexp.replace');
|
||||
require('../modules/es6.regexp.search');
|
||||
require('../modules/es6.regexp.split');
|
||||
module.exports = require('../modules/$.core').RegExp;
|
5
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/set.js
generated
vendored
Normal file
5
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/set.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.set');
|
||||
module.exports = require('../modules/$.core').Set;
|
14
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/string.js
generated
vendored
Normal file
14
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/string.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
require('../modules/es6.string.from-code-point');
|
||||
require('../modules/es6.string.raw');
|
||||
require('../modules/es6.string.trim');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/es6.string.code-point-at');
|
||||
require('../modules/es6.string.ends-with');
|
||||
require('../modules/es6.string.includes');
|
||||
require('../modules/es6.string.repeat');
|
||||
require('../modules/es6.string.starts-with');
|
||||
require('../modules/es6.regexp.match');
|
||||
require('../modules/es6.regexp.replace');
|
||||
require('../modules/es6.regexp.search');
|
||||
require('../modules/es6.regexp.split');
|
||||
module.exports = require('../modules/$.core').String;
|
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/symbol.js
generated
vendored
Normal file
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/symbol.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
require('../modules/es6.symbol');
|
||||
require('../modules/es6.object.to-string');
|
||||
module.exports = require('../modules/$.core').Symbol;
|
4
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/weak-map.js
generated
vendored
Normal file
4
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/weak-map.js
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.array.iterator');
|
||||
require('../modules/es6.weak-map');
|
||||
module.exports = require('../modules/$.core').WeakMap;
|
4
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/weak-set.js
generated
vendored
Normal file
4
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es6/weak-set.js
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.weak-set');
|
||||
module.exports = require('../modules/$.core').WeakSet;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/array.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/array.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/es7.array.includes');
|
||||
module.exports = require('../modules/$.core').Array;
|
13
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/index.js
generated
vendored
Normal file
13
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/index.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
require('../modules/es7.array.includes');
|
||||
require('../modules/es7.string.at');
|
||||
require('../modules/es7.string.pad-left');
|
||||
require('../modules/es7.string.pad-right');
|
||||
require('../modules/es7.string.trim-left');
|
||||
require('../modules/es7.string.trim-right');
|
||||
require('../modules/es7.regexp.escape');
|
||||
require('../modules/es7.object.get-own-property-descriptors');
|
||||
require('../modules/es7.object.values');
|
||||
require('../modules/es7.object.entries');
|
||||
require('../modules/es7.map.to-json');
|
||||
require('../modules/es7.set.to-json');
|
||||
module.exports = require('../modules/$.core');
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/map.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/map.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/es7.map.to-json');
|
||||
module.exports = require('../modules/$.core').Map;
|
4
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/object.js
generated
vendored
Normal file
4
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/object.js
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
require('../modules/es7.object.get-own-property-descriptors');
|
||||
require('../modules/es7.object.values');
|
||||
require('../modules/es7.object.entries');
|
||||
module.exports = require('../modules/$.core').Object;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/regexp.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/regexp.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/es7.regexp.escape');
|
||||
module.exports = require('../modules/$.core').RegExp;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/set.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/set.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/es7.set.to-json');
|
||||
module.exports = require('../modules/$.core').Set;
|
6
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/string.js
generated
vendored
Normal file
6
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/es7/string.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
require('../modules/es7.string.at');
|
||||
require('../modules/es7.string.pad-left');
|
||||
require('../modules/es7.string.pad-right');
|
||||
require('../modules/es7.string.trim-left');
|
||||
require('../modules/es7.string.trim-right');
|
||||
module.exports = require('../modules/$.core').String;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/_.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/_.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.function.part');
|
||||
module.exports = require('../modules/$.core')._;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/concat.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/concat.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.concat;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/copy-within.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/copy-within.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.copy-within');
|
||||
module.exports = require('../../modules/$.core').Array.copyWithin;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/entries.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/entries.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.iterator');
|
||||
module.exports = require('../../modules/$.core').Array.entries;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/every.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/every.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.every;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/fill.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/fill.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.fill');
|
||||
module.exports = require('../../modules/$.core').Array.fill;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/filter.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/filter.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.filter;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/find-index.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/find-index.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.find-index');
|
||||
module.exports = require('../../modules/$.core').Array.findIndex;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/find.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/find.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.find');
|
||||
module.exports = require('../../modules/$.core').Array.find;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/for-each.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/for-each.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.forEach;
|
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/from.js
generated
vendored
Normal file
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/from.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
require('../../modules/es6.string.iterator');
|
||||
require('../../modules/es6.array.from');
|
||||
module.exports = require('../../modules/$.core').Array.from;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/includes.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/includes.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es7.array.includes');
|
||||
module.exports = require('../../modules/$.core').Array.includes;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/index-of.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/index-of.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.indexOf;
|
12
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/index.js
generated
vendored
Normal file
12
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/index.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
require('../../modules/es6.string.iterator');
|
||||
require('../../modules/es6.array.from');
|
||||
require('../../modules/es6.array.of');
|
||||
require('../../modules/es6.array.species');
|
||||
require('../../modules/es6.array.iterator');
|
||||
require('../../modules/es6.array.copy-within');
|
||||
require('../../modules/es6.array.fill');
|
||||
require('../../modules/es6.array.find');
|
||||
require('../../modules/es6.array.find-index');
|
||||
require('../../modules/es7.array.includes');
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/iterator.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/iterator.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.iterator');
|
||||
module.exports = require('../../modules/$.core').Array.values;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/join.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/join.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.join;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/keys.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/keys.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.iterator');
|
||||
module.exports = require('../../modules/$.core').Array.keys;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/last-index-of.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/last-index-of.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.lastIndexOf;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/map.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/map.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.map;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/of.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/of.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.of');
|
||||
module.exports = require('../../modules/$.core').Array.of;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/pop.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/pop.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.pop;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/push.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/push.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.push;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/reduce-right.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/reduce-right.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.reduceRight;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/reduce.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/reduce.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.reduce;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/reverse.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/reverse.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.reverse;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/shift.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/shift.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.shift;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/slice.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/slice.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.slice;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/some.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/some.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.some;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/sort.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/sort.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.sort;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/splice.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/splice.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.splice;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/unshift.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/unshift.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/js.array.statics');
|
||||
module.exports = require('../../modules/$.core').Array.unshift;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/values.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/array/values.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.iterator');
|
||||
module.exports = require('../../modules/$.core').Array.values;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/clear-immediate.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/clear-immediate.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/web.immediate');
|
||||
module.exports = require('../modules/$.core').clearImmediate;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/delay.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/delay.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.delay');
|
||||
module.exports = require('../modules/$.core').delay;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/dict.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/dict.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.dict');
|
||||
module.exports = require('../modules/$.core').Dict;
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/function/has-instance.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/function/has-instance.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.function.has-instance');
|
||||
module.exports = Function[require('../../modules/$.wks')('hasInstance')];
|
4
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/function/index.js
generated
vendored
Normal file
4
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/function/index.js
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
require('../../modules/es6.function.name');
|
||||
require('../../modules/es6.function.has-instance');
|
||||
require('../../modules/core.function.part');
|
||||
module.exports = require('../../modules/$.core').Function;
|
1
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/function/name.js
generated
vendored
Normal file
1
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/function/name.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
require('../../modules/es6.function.name');
|
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/function/part.js
generated
vendored
Normal file
2
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/function/part.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
require('../../modules/core.function.part');
|
||||
module.exports = require('../../modules/$.core').Function.part;
|
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/get-iterator-method.js
generated
vendored
Normal file
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/get-iterator-method.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.string.iterator');
|
||||
module.exports = require('../modules/core.get-iterator-method');
|
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/get-iterator.js
generated
vendored
Normal file
3
goTorrentWebUI/node_modules/react-dropzone/node_modules/core-js/fn/get-iterator.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.string.iterator');
|
||||
module.exports = require('../modules/core.get-iterator');
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user