|
| 1 | +/*! |
| 2 | + |
| 3 | +JSZip v3.10.1 - A JavaScript class for generating and reading zip files |
| 4 | +<http://stuartk.com/jszip> |
| 5 | + |
| 6 | +(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com> |
| 7 | +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/main/LICENSE.markdown. |
| 8 | + |
| 9 | +JSZip uses the library pako released under the MIT license : |
| 10 | +https://github.com/nodeca/pako/blob/main/LICENSE |
| 11 | +*/ |
| 12 | + |
| 13 | +/*! |
| 14 | + * Copyright (c) 2016-2021 Digital Bazaar, Inc. All rights reserved. |
| 15 | + */ |
| 16 | + |
| 17 | +/*! |
| 18 | + * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved. |
| 19 | + */ |
| 20 | + |
| 21 | +/*! |
| 22 | + * Copyright (c) 2016-2023 Digital Bazaar, Inc. All rights reserved. |
| 23 | + */ |
| 24 | + |
| 25 | +/*! |
| 26 | + * Copyright (c) 2023 Digital Bazaar, Inc. All rights reserved. |
| 27 | + */ |
| 28 | + |
| 29 | +/*! |
| 30 | + * The buffer module from node.js, for the browser. |
| 31 | + * |
| 32 | + * @author Feross Aboukhadijeh <https://feross.org> |
| 33 | + * @license MIT |
| 34 | + */ |
| 35 | + |
| 36 | +/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */ |
| 37 | + |
| 38 | +/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */ |
| 39 | + |
| 40 | +/** |
| 41 | + * @license |
| 42 | + * MIT License |
| 43 | + * |
| 44 | + * Copyright (c) 2014-present, Lee Byron and other contributors. |
| 45 | + * |
| 46 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 47 | + * of this software and associated documentation files (the "Software"), to deal |
| 48 | + * in the Software without restriction, including without limitation the rights |
| 49 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 50 | + * copies of the Software, and to permit persons to whom the Software is |
| 51 | + * furnished to do so, subject to the following conditions: |
| 52 | + * |
| 53 | + * The above copyright notice and this permission notice shall be included in all |
| 54 | + * copies or substantial portions of the Software. |
| 55 | + * |
| 56 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 57 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 58 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 59 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 60 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 61 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 62 | + * SOFTWARE. |
| 63 | + */ |
| 64 | + |
| 65 | +/** |
| 66 | + * @preserve |
| 67 | + * JS Implementation of incremental MurmurHash3 (r150) (as of May 10, 2013) |
| 68 | + * |
| 69 | + * @author <a href="mailto:jensyt@gmail.com">Jens Taylor</a> |
| 70 | + * @see http://github.com/homebrewing/brauhaus-diff |
| 71 | + * @author <a href="mailto:gary.court@gmail.com">Gary Court</a> |
| 72 | + * @see http://github.com/garycourt/murmurhash-js |
| 73 | + * @author <a href="mailto:aappleby@gmail.com">Austin Appleby</a> |
| 74 | + * @see http://sites.google.com/site/murmurhash/ |
| 75 | + */ |
| 76 | + |
| 77 | +/** |
| 78 | + * A JavaScript implementation of the JSON-LD API. |
| 79 | + * |
| 80 | + * @author Dave Longley |
| 81 | + * |
| 82 | + * @license BSD 3-Clause License |
| 83 | + * Copyright (c) 2011-2022 Digital Bazaar, Inc. |
| 84 | + * All rights reserved. |
| 85 | + * |
| 86 | + * Redistribution and use in source and binary forms, with or without |
| 87 | + * modification, are permitted provided that the following conditions are met: |
| 88 | + * |
| 89 | + * Redistributions of source code must retain the above copyright notice, |
| 90 | + * this list of conditions and the following disclaimer. |
| 91 | + * |
| 92 | + * Redistributions in binary form must reproduce the above copyright |
| 93 | + * notice, this list of conditions and the following disclaimer in the |
| 94 | + * documentation and/or other materials provided with the distribution. |
| 95 | + * |
| 96 | + * Neither the name of the Digital Bazaar, Inc. nor the names of its |
| 97 | + * contributors may be used to endorse or promote products derived from |
| 98 | + * this software without specific prior written permission. |
| 99 | + * |
| 100 | + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
| 101 | + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 102 | + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 103 | + * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 104 | + * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 105 | + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 106 | + * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 107 | + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 108 | + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 109 | + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 110 | + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 111 | + */ |
| 112 | + |
| 113 | +/** |
| 114 | + * Character class utilities for XML NS 1.0 edition 3. |
| 115 | + * |
| 116 | + * @author Louis-Dominique Dubeau |
| 117 | + * @license MIT |
| 118 | + * @copyright Louis-Dominique Dubeau |
| 119 | + */ |
| 120 | + |
| 121 | +/** |
| 122 | + * Character classes and associated utilities for the 2nd edition of XML 1.1. |
| 123 | + * |
| 124 | + * @author Louis-Dominique Dubeau |
| 125 | + * @license MIT |
| 126 | + * @copyright Louis-Dominique Dubeau |
| 127 | + */ |
| 128 | + |
| 129 | +/** |
| 130 | + * Character classes and associated utilities for the 5th edition of XML 1.0. |
| 131 | + * |
| 132 | + * @author Louis-Dominique Dubeau |
| 133 | + * @license MIT |
| 134 | + * @copyright Louis-Dominique Dubeau |
| 135 | + */ |
| 136 | + |
| 137 | +/** |
| 138 | + * Removes the @preserve keywords from expanded result of framing. |
| 139 | + * |
| 140 | + * @param input the framed, framed output. |
| 141 | + * @param options the framing options used. |
| 142 | + * |
| 143 | + * @return the resulting output. |
| 144 | + */ |
| 145 | + |
| 146 | +// disallow aliasing @context and @preserve |
| 147 | + |
| 148 | +// remove @preserve |
| 149 | + |
| 150 | +// remove @preserve from results |
0 commit comments