bson 6.10.4 → 7.0.0-alpha

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.
@@ -1,157 +0,0 @@
1
- /*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */
2
- ;(function(root) {
3
-
4
- // Detect free variables `exports`.
5
- var freeExports = typeof exports == 'object' && exports;
6
-
7
- // Detect free variable `module`.
8
- var freeModule = typeof module == 'object' && module &&
9
- module.exports == freeExports && module;
10
-
11
- /*--------------------------------------------------------------------------*/
12
-
13
- var InvalidCharacterError = function(message) {
14
- this.message = message;
15
- };
16
- InvalidCharacterError.prototype = new Error;
17
- InvalidCharacterError.prototype.name = 'InvalidCharacterError';
18
-
19
- var error = function(message) {
20
- // Note: the error messages used throughout this file match those used by
21
- // the native `atob`/`btoa` implementation in Chromium.
22
- throw new InvalidCharacterError(message);
23
- };
24
-
25
- var TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
26
- // http://whatwg.org/html/common-microsyntaxes.html#space-character
27
- var REGEX_SPACE_CHARACTERS = /[\t\n\f\r ]/g;
28
-
29
- // `decode` is designed to be fully compatible with `atob` as described in the
30
- // HTML Standard. http://whatwg.org/html/webappapis.html#dom-windowbase64-atob
31
- // The optimized base64-decoding algorithm used is based on @atk’s excellent
32
- // implementation. https://gist.github.com/atk/1020396
33
- var decode = function(input) {
34
- input = String(input)
35
- .replace(REGEX_SPACE_CHARACTERS, '');
36
- var length = input.length;
37
- if (length % 4 == 0) {
38
- input = input.replace(/==?$/, '');
39
- length = input.length;
40
- }
41
- if (
42
- length % 4 == 1 ||
43
- // http://whatwg.org/C#alphanumeric-ascii-characters
44
- /[^+a-zA-Z0-9/]/.test(input)
45
- ) {
46
- error(
47
- 'Invalid character: the string to be decoded is not correctly encoded.'
48
- );
49
- }
50
- var bitCounter = 0;
51
- var bitStorage;
52
- var buffer;
53
- var output = '';
54
- var position = -1;
55
- while (++position < length) {
56
- buffer = TABLE.indexOf(input.charAt(position));
57
- bitStorage = bitCounter % 4 ? bitStorage * 64 + buffer : buffer;
58
- // Unless this is the first of a group of 4 characters…
59
- if (bitCounter++ % 4) {
60
- // …convert the first 8 bits to a single ASCII character.
61
- output += String.fromCharCode(
62
- 0xFF & bitStorage >> (-2 * bitCounter & 6)
63
- );
64
- }
65
- }
66
- return output;
67
- };
68
-
69
- // `encode` is designed to be fully compatible with `btoa` as described in the
70
- // HTML Standard: http://whatwg.org/html/webappapis.html#dom-windowbase64-btoa
71
- var encode = function(input) {
72
- input = String(input);
73
- if (/[^\0-\xFF]/.test(input)) {
74
- // Note: no need to special-case astral symbols here, as surrogates are
75
- // matched, and the input is supposed to only contain ASCII anyway.
76
- error(
77
- 'The string to be encoded contains characters outside of the ' +
78
- 'Latin1 range.'
79
- );
80
- }
81
- var padding = input.length % 3;
82
- var output = '';
83
- var position = -1;
84
- var a;
85
- var b;
86
- var c;
87
- var buffer;
88
- // Make sure any padding is handled outside of the loop.
89
- var length = input.length - padding;
90
-
91
- while (++position < length) {
92
- // Read three bytes, i.e. 24 bits.
93
- a = input.charCodeAt(position) << 16;
94
- b = input.charCodeAt(++position) << 8;
95
- c = input.charCodeAt(++position);
96
- buffer = a + b + c;
97
- // Turn the 24 bits into four chunks of 6 bits each, and append the
98
- // matching character for each of them to the output.
99
- output += (
100
- TABLE.charAt(buffer >> 18 & 0x3F) +
101
- TABLE.charAt(buffer >> 12 & 0x3F) +
102
- TABLE.charAt(buffer >> 6 & 0x3F) +
103
- TABLE.charAt(buffer & 0x3F)
104
- );
105
- }
106
-
107
- if (padding == 2) {
108
- a = input.charCodeAt(position) << 8;
109
- b = input.charCodeAt(++position);
110
- buffer = a + b;
111
- output += (
112
- TABLE.charAt(buffer >> 10) +
113
- TABLE.charAt((buffer >> 4) & 0x3F) +
114
- TABLE.charAt((buffer << 2) & 0x3F) +
115
- '='
116
- );
117
- } else if (padding == 1) {
118
- buffer = input.charCodeAt(position);
119
- output += (
120
- TABLE.charAt(buffer >> 2) +
121
- TABLE.charAt((buffer << 4) & 0x3F) +
122
- '=='
123
- );
124
- }
125
-
126
- return output;
127
- };
128
-
129
- var base64 = {
130
- 'encode': encode,
131
- 'decode': decode,
132
- 'version': '1.0.0'
133
- };
134
-
135
- // Some AMD build optimizers, like r.js, check for specific condition patterns
136
- // like the following:
137
- if (
138
- typeof define == 'function' &&
139
- typeof define.amd == 'object' &&
140
- define.amd
141
- ) {
142
- define(function() {
143
- return base64;
144
- });
145
- } else if (freeExports && !freeExports.nodeType) {
146
- if (freeModule) { // in Node.js or RingoJS v0.8.0+
147
- freeModule.exports = base64;
148
- } else { // in Narwhal or RingoJS v0.7.0-
149
- for (var key in base64) {
150
- base64.hasOwnProperty(key) && (freeExports[key] = base64[key]);
151
- }
152
- }
153
- } else { // in Rhino or a web browser
154
- root.base64 = base64;
155
- }
156
-
157
- }(this));
@@ -1,43 +0,0 @@
1
- {
2
- "name": "base-64",
3
- "version": "1.0.0",
4
- "description": "A robust base64 encoder/decoder that is fully compatible with `atob()` and `btoa()`, written in JavaScript.",
5
- "homepage": "https://mths.be/base64",
6
- "main": "base64.js",
7
- "keywords": [
8
- "codec",
9
- "decoder",
10
- "encoder",
11
- "base64",
12
- "atob",
13
- "btoa"
14
- ],
15
- "license": "MIT",
16
- "author": {
17
- "name": "Mathias Bynens",
18
- "url": "https://mathiasbynens.be/"
19
- },
20
- "repository": {
21
- "type": "git",
22
- "url": "https://github.com/mathiasbynens/base64.git"
23
- },
24
- "bugs": "https://github.com/mathiasbynens/base64/issues",
25
- "files": [
26
- "LICENSE-MIT.txt",
27
- "base64.js"
28
- ],
29
- "scripts": {
30
- "test": "mocha tests/tests.js",
31
- "build": "grunt build"
32
- },
33
- "devDependencies": {
34
- "coveralls": "^2.11.4",
35
- "grunt": "^0.4.5",
36
- "grunt-cli": "^1.3.2",
37
- "grunt-shell": "^1.1.2",
38
- "grunt-template": "^0.2.3",
39
- "istanbul": "^0.4.0",
40
- "mocha": "^6.2.0",
41
- "regenerate": "^1.2.1"
42
- }
43
- }
@@ -1,237 +0,0 @@
1
- The encoding indexes, algorithms, and many comments in the code
2
- derive from the Encoding Standard https://encoding.spec.whatwg.org/
3
-
4
- Otherwise, the code of this repository is released under the Unlicense
5
- license and is also dual-licensed under an Apache 2.0 license. Both
6
- are included below.
7
-
8
- # Unlicense
9
-
10
- This is free and unencumbered software released into the public domain.
11
-
12
- Anyone is free to copy, modify, publish, use, compile, sell, or
13
- distribute this software, either in source code form or as a compiled
14
- binary, for any purpose, commercial or non-commercial, and by any
15
- means.
16
-
17
- In jurisdictions that recognize copyright laws, the author or authors
18
- of this software dedicate any and all copyright interest in the
19
- software to the public domain. We make this dedication for the benefit
20
- of the public at large and to the detriment of our heirs and
21
- successors. We intend this dedication to be an overt act of
22
- relinquishment in perpetuity of all present and future rights to this
23
- software under copyright law.
24
-
25
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
28
- IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
29
- OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
30
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
31
- OTHER DEALINGS IN THE SOFTWARE.
32
-
33
- For more information, please refer to <http://unlicense.org/>
34
-
35
- # Apache 2.0 License
36
-
37
- Apache License
38
- Version 2.0, January 2004
39
- http://www.apache.org/licenses/
40
-
41
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
42
-
43
- 1. Definitions.
44
-
45
- "License" shall mean the terms and conditions for use, reproduction,
46
- and distribution as defined by Sections 1 through 9 of this document.
47
-
48
- "Licensor" shall mean the copyright owner or entity authorized by
49
- the copyright owner that is granting the License.
50
-
51
- "Legal Entity" shall mean the union of the acting entity and all
52
- other entities that control, are controlled by, or are under common
53
- control with that entity. For the purposes of this definition,
54
- "control" means (i) the power, direct or indirect, to cause the
55
- direction or management of such entity, whether by contract or
56
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
57
- outstanding shares, or (iii) beneficial ownership of such entity.
58
-
59
- "You" (or "Your") shall mean an individual or Legal Entity
60
- exercising permissions granted by this License.
61
-
62
- "Source" form shall mean the preferred form for making modifications,
63
- including but not limited to software source code, documentation
64
- source, and configuration files.
65
-
66
- "Object" form shall mean any form resulting from mechanical
67
- transformation or translation of a Source form, including but
68
- not limited to compiled object code, generated documentation,
69
- and conversions to other media types.
70
-
71
- "Work" shall mean the work of authorship, whether in Source or
72
- Object form, made available under the License, as indicated by a
73
- copyright notice that is included in or attached to the work
74
- (an example is provided in the Appendix below).
75
-
76
- "Derivative Works" shall mean any work, whether in Source or Object
77
- form, that is based on (or derived from) the Work and for which the
78
- editorial revisions, annotations, elaborations, or other modifications
79
- represent, as a whole, an original work of authorship. For the purposes
80
- of this License, Derivative Works shall not include works that remain
81
- separable from, or merely link (or bind by name) to the interfaces of,
82
- the Work and Derivative Works thereof.
83
-
84
- "Contribution" shall mean any work of authorship, including
85
- the original version of the Work and any modifications or additions
86
- to that Work or Derivative Works thereof, that is intentionally
87
- submitted to Licensor for inclusion in the Work by the copyright owner
88
- or by an individual or Legal Entity authorized to submit on behalf of
89
- the copyright owner. For the purposes of this definition, "submitted"
90
- means any form of electronic, verbal, or written communication sent
91
- to the Licensor or its representatives, including but not limited to
92
- communication on electronic mailing lists, source code control systems,
93
- and issue tracking systems that are managed by, or on behalf of, the
94
- Licensor for the purpose of discussing and improving the Work, but
95
- excluding communication that is conspicuously marked or otherwise
96
- designated in writing by the copyright owner as "Not a Contribution."
97
-
98
- "Contributor" shall mean Licensor and any individual or Legal Entity
99
- on behalf of whom a Contribution has been received by Licensor and
100
- subsequently incorporated within the Work.
101
-
102
- 2. Grant of Copyright License. Subject to the terms and conditions of
103
- this License, each Contributor hereby grants to You a perpetual,
104
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
105
- copyright license to reproduce, prepare Derivative Works of,
106
- publicly display, publicly perform, sublicense, and distribute the
107
- Work and such Derivative Works in Source or Object form.
108
-
109
- 3. Grant of Patent License. Subject to the terms and conditions of
110
- this License, each Contributor hereby grants to You a perpetual,
111
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
112
- (except as stated in this section) patent license to make, have made,
113
- use, offer to sell, sell, import, and otherwise transfer the Work,
114
- where such license applies only to those patent claims licensable
115
- by such Contributor that are necessarily infringed by their
116
- Contribution(s) alone or by combination of their Contribution(s)
117
- with the Work to which such Contribution(s) was submitted. If You
118
- institute patent litigation against any entity (including a
119
- cross-claim or counterclaim in a lawsuit) alleging that the Work
120
- or a Contribution incorporated within the Work constitutes direct
121
- or contributory patent infringement, then any patent licenses
122
- granted to You under this License for that Work shall terminate
123
- as of the date such litigation is filed.
124
-
125
- 4. Redistribution. You may reproduce and distribute copies of the
126
- Work or Derivative Works thereof in any medium, with or without
127
- modifications, and in Source or Object form, provided that You
128
- meet the following conditions:
129
-
130
- (a) You must give any other recipients of the Work or
131
- Derivative Works a copy of this License; and
132
-
133
- (b) You must cause any modified files to carry prominent notices
134
- stating that You changed the files; and
135
-
136
- (c) You must retain, in the Source form of any Derivative Works
137
- that You distribute, all copyright, patent, trademark, and
138
- attribution notices from the Source form of the Work,
139
- excluding those notices that do not pertain to any part of
140
- the Derivative Works; and
141
-
142
- (d) If the Work includes a "NOTICE" text file as part of its
143
- distribution, then any Derivative Works that You distribute must
144
- include a readable copy of the attribution notices contained
145
- within such NOTICE file, excluding those notices that do not
146
- pertain to any part of the Derivative Works, in at least one
147
- of the following places: within a NOTICE text file distributed
148
- as part of the Derivative Works; within the Source form or
149
- documentation, if provided along with the Derivative Works; or,
150
- within a display generated by the Derivative Works, if and
151
- wherever such third-party notices normally appear. The contents
152
- of the NOTICE file are for informational purposes only and
153
- do not modify the License. You may add Your own attribution
154
- notices within Derivative Works that You distribute, alongside
155
- or as an addendum to the NOTICE text from the Work, provided
156
- that such additional attribution notices cannot be construed
157
- as modifying the License.
158
-
159
- You may add Your own copyright statement to Your modifications and
160
- may provide additional or different license terms and conditions
161
- for use, reproduction, or distribution of Your modifications, or
162
- for any such Derivative Works as a whole, provided Your use,
163
- reproduction, and distribution of the Work otherwise complies with
164
- the conditions stated in this License.
165
-
166
- 5. Submission of Contributions. Unless You explicitly state otherwise,
167
- any Contribution intentionally submitted for inclusion in the Work
168
- by You to the Licensor shall be under the terms and conditions of
169
- this License, without any additional terms or conditions.
170
- Notwithstanding the above, nothing herein shall supersede or modify
171
- the terms of any separate license agreement you may have executed
172
- with Licensor regarding such Contributions.
173
-
174
- 6. Trademarks. This License does not grant permission to use the trade
175
- names, trademarks, service marks, or product names of the Licensor,
176
- except as required for reasonable and customary use in describing the
177
- origin of the Work and reproducing the content of the NOTICE file.
178
-
179
- 7. Disclaimer of Warranty. Unless required by applicable law or
180
- agreed to in writing, Licensor provides the Work (and each
181
- Contributor provides its Contributions) on an "AS IS" BASIS,
182
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
183
- implied, including, without limitation, any warranties or conditions
184
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
185
- PARTICULAR PURPOSE. You are solely responsible for determining the
186
- appropriateness of using or redistributing the Work and assume any
187
- risks associated with Your exercise of permissions under this License.
188
-
189
- 8. Limitation of Liability. In no event and under no legal theory,
190
- whether in tort (including negligence), contract, or otherwise,
191
- unless required by applicable law (such as deliberate and grossly
192
- negligent acts) or agreed to in writing, shall any Contributor be
193
- liable to You for damages, including any direct, indirect, special,
194
- incidental, or consequential damages of any character arising as a
195
- result of this License or out of the use or inability to use the
196
- Work (including but not limited to damages for loss of goodwill,
197
- work stoppage, computer failure or malfunction, or any and all
198
- other commercial damages or losses), even if such Contributor
199
- has been advised of the possibility of such damages.
200
-
201
- 9. Accepting Warranty or Additional Liability. While redistributing
202
- the Work or Derivative Works thereof, You may choose to offer,
203
- and charge a fee for, acceptance of support, warranty, indemnity,
204
- or other liability obligations and/or rights consistent with this
205
- License. However, in accepting such obligations, You may act only
206
- on Your own behalf and on Your sole responsibility, not on behalf
207
- of any other Contributor, and only if You agree to indemnify,
208
- defend, and hold each Contributor harmless for any liability
209
- incurred by, or claims asserted against, such Contributor by reason
210
- of your accepting any such warranty or additional liability.
211
-
212
- END OF TERMS AND CONDITIONS
213
-
214
- APPENDIX: How to apply the Apache License to your work.
215
-
216
- To apply the Apache License to your work, attach the following
217
- boilerplate notice, with the fields enclosed by brackets "[]"
218
- replaced with your own identifying information. (Don't include
219
- the brackets!) The text should be enclosed in the appropriate
220
- comment syntax for the file format. We also recommend that a
221
- file or class name and description of purpose be included on the
222
- same "printed page" as the copyright notice for easier
223
- identification within third-party archives.
224
-
225
- Copyright [yyyy] [name of copyright owner]
226
-
227
- Licensed under the Apache License, Version 2.0 (the "License");
228
- you may not use this file except in compliance with the License.
229
- You may obtain a copy of the License at
230
-
231
- http://www.apache.org/licenses/LICENSE-2.0
232
-
233
- Unless required by applicable law or agreed to in writing, software
234
- distributed under the License is distributed on an "AS IS" BASIS,
235
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
236
- See the License for the specific language governing permissions and
237
- limitations under the License.
@@ -1,111 +0,0 @@
1
- text-encoding
2
- ==============
3
-
4
- This is a polyfill for the [Encoding Living
5
- Standard](https://encoding.spec.whatwg.org/) API for the Web, allowing
6
- encoding and decoding of textual data to and from Typed Array buffers
7
- for binary data in JavaScript.
8
-
9
- By default it adheres to the spec and does not support *encoding* to
10
- legacy encodings, only *decoding*. It is also implemented to match the
11
- specification's algorithms, rather than for performance. The intended
12
- use is within Web pages, so it has no dependency on server frameworks
13
- or particular module schemes.
14
-
15
- Basic examples and tests are included.
16
-
17
- ### Install ###
18
-
19
- There are a few ways you can get and use the `text-encoding` library.
20
-
21
- ### HTML Page Usage ###
22
-
23
- Clone the repo and include the files directly:
24
-
25
- ```html
26
- <!-- Required for non-UTF encodings -->
27
- <script src="encoding-indexes.js"></script>
28
- <script src="encoding.js"></script>
29
- ```
30
-
31
- This is the only use case the developer cares about. If you want those
32
- fancy module and/or package manager things that are popular these days
33
- you should probably use a different library.
34
-
35
- #### Package Managers ####
36
-
37
- The package is published to **npm** and **bower** as `text-encoding`.
38
- Use through these is not really supported, since they aren't used by
39
- the developer of the library. Using `require()` in interesting ways
40
- probably breaks. Patches welcome, as long as they don't break the
41
- basic use of the files via `<script>`.
42
-
43
- ### API Overview ###
44
-
45
- Basic Usage
46
-
47
- ```js
48
- var uint8array = new TextEncoder().encode(string);
49
- var string = new TextDecoder(encoding).decode(uint8array);
50
- ```
51
-
52
- Streaming Decode
53
-
54
- ```js
55
- var string = "", decoder = new TextDecoder(encoding), buffer;
56
- while (buffer = next_chunk()) {
57
- string += decoder.decode(buffer, {stream:true});
58
- }
59
- string += decoder.decode(); // finish the stream
60
- ```
61
-
62
- ### Encodings ###
63
-
64
- All encodings from the Encoding specification are supported:
65
-
66
- utf-8 ibm866 iso-8859-2 iso-8859-3 iso-8859-4 iso-8859-5 iso-8859-6
67
- iso-8859-7 iso-8859-8 iso-8859-8-i iso-8859-10 iso-8859-13 iso-8859-14
68
- iso-8859-15 iso-8859-16 koi8-r koi8-u macintosh windows-874
69
- windows-1250 windows-1251 windows-1252 windows-1253 windows-1254
70
- windows-1255 windows-1256 windows-1257 windows-1258 x-mac-cyrillic
71
- gb18030 hz-gb-2312 big5 euc-jp iso-2022-jp shift_jis euc-kr
72
- replacement utf-16be utf-16le x-user-defined
73
-
74
- (Some encodings may be supported under other names, e.g. ascii,
75
- iso-8859-1, etc. See [Encoding](https://encoding.spec.whatwg.org/) for
76
- additional labels for each encoding.)
77
-
78
- Encodings other than **utf-8**, **utf-16le** and **utf-16be** require
79
- an additional `encoding-indexes.js` file to be included. It is rather
80
- large (596kB uncompressed, 188kB gzipped); portions may be deleted if
81
- support for some encodings is not required.
82
-
83
- ### Non-Standard Behavior ###
84
-
85
- As required by the specification, only encoding to **utf-8** is
86
- supported. If you want to try it out, you can force a non-standard
87
- behavior by passing the `NONSTANDARD_allowLegacyEncoding` option to
88
- TextEncoder and a label. For example:
89
-
90
- ```js
91
- var uint8array = new TextEncoder(
92
- 'windows-1252', { NONSTANDARD_allowLegacyEncoding: true }).encode(text);
93
- ```
94
-
95
- But note that the above won't work if you're using the polyfill in a
96
- browser that natively supports the TextEncoder API natively, since the
97
- polyfill won't be used!
98
-
99
- You can force the polyfill to be used by using this before the polyfill:
100
-
101
- ```html
102
- <script>
103
- window.TextEncoder = window.TextDecoder = null;
104
- </script>
105
- ```
106
-
107
- To support the legacy encodings (which may be stateful), the
108
- TextEncoder `encode()` method accepts an optional dictionary and
109
- `stream` option, e.g. `encoder.encode(string, {stream: true});` This
110
- is not needed for standard encoding since the input is always in
111
- complete code points.
@@ -1,9 +0,0 @@
1
- // This is free and unencumbered software released into the public domain.
2
- // See LICENSE.md for more information.
3
-
4
- var encoding = require("./lib/encoding.js");
5
-
6
- module.exports = {
7
- TextEncoder: encoding.TextEncoder,
8
- TextDecoder: encoding.TextDecoder,
9
- };