dcp-client 4.4.23 → 4.4.24
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/bin/dcp-config-value +163 -0
- package/build/bundle +1 -10
- package/build/etc/config.cache +2 -2
- package/build/generate-sandbox-definitions-json +2 -0
- package/dist/dcp-client-bundle.js +1 -1
- package/dist/dcp-client-bundle.js.LICENSE.txt +27 -0
- package/dist/dcp-client-bundle.js.map +1 -1
- package/generated/sandbox-definitions.json +1 -1
- package/index.js +5 -4
- package/lib/standaloneWorker.js +56 -46
- package/libexec/sandbox/access-lists.js +2 -514
- package/libexec/sandbox/bravojs-env.js +1 -1
- package/libexec/sandbox/polyfills.js +519 -0
- package/libexec/sandbox/url.js +432 -0
- package/ns-map.js +0 -1
- package/package.json +6 -6
- package/dist/dcp-modal-style.css +0 -8232
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* The buffer module from node.js, for the browser.
|
|
3
|
+
*
|
|
4
|
+
* @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*!
|
|
9
|
+
* The buffer module from node.js, for the browser.
|
|
10
|
+
*
|
|
11
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
12
|
+
* @license MIT
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/*! MIT License. Copyright 2015-2018 Richard Moore <me@ricmoo.com>. See LICENSE.txt. */
|
|
16
|
+
|
|
17
|
+
/*! https://mths.be/he v1.2.0 by @mathias | MIT license */
|
|
18
|
+
|
|
19
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
20
|
+
|
|
21
|
+
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
22
|
+
|
|
23
|
+
//!! Deliberately using an API that's deprecated in node.js because
|
|
24
|
+
|
|
25
|
+
//!! Discussion: github.com/node-browser-compat/atob/pull/9
|
|
26
|
+
|
|
27
|
+
//!! this file is for browsers and we expect them to cope with it.
|