minidev 1.7.2 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/web-sim/devtool/main.js +1 -1
- package/assets/web-sim/main.js +1 -1
- package/assets/web-sim/simulator/main.js +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.LICENSE.txt +15 -0
- package/lib/rw_host.js +1 -1
- package/lib/rw_host.js.LICENSE.txt +2 -0
- package/lib/worker.js +1 -1
- package/package.json +1 -1
package/lib/index.js.LICENSE.txt
CHANGED
|
@@ -298,6 +298,8 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
298
298
|
|
|
299
299
|
/*! http://mths.be/fromcodepoint v0.1.0 by @mathias */
|
|
300
300
|
|
|
301
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
302
|
+
|
|
301
303
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
302
304
|
|
|
303
305
|
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
@@ -568,6 +570,19 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
568
570
|
* rgbquant.ts - part of Image Quantization Library
|
|
569
571
|
*/
|
|
570
572
|
|
|
573
|
+
/**
|
|
574
|
+
* Wrapper for built-in http.js to emulate the browser XMLHttpRequest object.
|
|
575
|
+
*
|
|
576
|
+
* This can be used with JS designed for browsers to improve reuse of code and
|
|
577
|
+
* allow the use of existing libraries.
|
|
578
|
+
*
|
|
579
|
+
* Usage: include("XMLHttpRequest.js") and use XMLHttpRequest per W3C specs.
|
|
580
|
+
*
|
|
581
|
+
* @author Dan DeFelippi <dan@driverdan.com>
|
|
582
|
+
* @contributor David Ellis <d.f.ellis@ieee.org>
|
|
583
|
+
* @license MIT
|
|
584
|
+
*/
|
|
585
|
+
|
|
571
586
|
/**!
|
|
572
587
|
* default-user-agent - index.js
|
|
573
588
|
*
|