|
| 1 | +/* |
| 2 | + * @version 1.4.0 |
| 3 | + * @date 2015-10-26 |
| 4 | + * @stability 3 - Stable |
| 5 | + * @author Lauri Rooden (https://github.com/litejs/natural-compare-lite) |
| 6 | + * @license MIT License |
| 7 | + */ |
| 8 | + |
| 9 | +/* |
| 10 | +object-assign |
| 11 | +(c) Sindre Sorhus |
| 12 | +@license MIT |
| 13 | +*/ |
| 14 | + |
| 15 | +/* v8 ignore else -- @preserve */ |
| 16 | + |
| 17 | +/* v8 ignore else -- @preserve -- Bug with vitest coverage where it sees an else branch that doesn't exist */ |
| 18 | + |
| 19 | +/* v8 ignore next -- @preserve */ |
| 20 | + |
| 21 | +/*! |
| 22 | + * Copyright 2010 LearnBoost <dev@learnboost.com> |
| 23 | + * |
| 24 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 25 | + * you may not use this file except in compliance with the License. |
| 26 | + * You may obtain a copy of the License at |
| 27 | + * |
| 28 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 29 | + * |
| 30 | + * Unless required by applicable law or agreed to in writing, software |
| 31 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 32 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 33 | + * See the License for the specific language governing permissions and |
| 34 | + * limitations under the License. |
| 35 | + */ |
| 36 | + |
| 37 | +/*! |
| 38 | + * @description Recursive object extending |
| 39 | + * @author Viacheslav Lotsmanov <lotsmanov89@gmail.com> |
| 40 | + * @license MIT |
| 41 | + * |
| 42 | + * The MIT License (MIT) |
| 43 | + * |
| 44 | + * Copyright (c) 2013-2018 Viacheslav Lotsmanov |
| 45 | + * |
| 46 | + * Permission is hereby granted, free of charge, to any person obtaining a copy of |
| 47 | + * this software and associated documentation files (the "Software"), to deal in |
| 48 | + * the Software without restriction, including without limitation the rights to |
| 49 | + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
| 50 | + * the Software, and to permit persons to whom the Software is furnished to do so, |
| 51 | + * 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, FITNESS |
| 58 | + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
| 59 | + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
| 60 | + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 61 | + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 62 | + */ |
| 63 | + |
| 64 | +/*! |
| 65 | + * Copyright (c) 2015, Salesforce.com, Inc. |
| 66 | + * All rights reserved. |
| 67 | + * |
| 68 | + * Redistribution and use in source and binary forms, with or without |
| 69 | + * modification, are permitted provided that the following conditions are met: |
| 70 | + * |
| 71 | + * 1. Redistributions of source code must retain the above copyright notice, |
| 72 | + * this list of conditions and the following disclaimer. |
| 73 | + * |
| 74 | + * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 75 | + * this list of conditions and the following disclaimer in the documentation |
| 76 | + * and/or other materials provided with the distribution. |
| 77 | + * |
| 78 | + * 3. Neither the name of Salesforce.com nor the names of its contributors may |
| 79 | + * be used to endorse or promote products derived from this software without |
| 80 | + * specific prior written permission. |
| 81 | + * |
| 82 | + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 83 | + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 84 | + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 85 | + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 86 | + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 87 | + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 88 | + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 89 | + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 90 | + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 91 | + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 92 | + * POSSIBILITY OF SUCH DAMAGE. |
| 93 | + */ |
| 94 | + |
| 95 | +/*! |
| 96 | + * Copyright (c) 2018, Salesforce.com, Inc. |
| 97 | + * All rights reserved. |
| 98 | + * |
| 99 | + * Redistribution and use in source and binary forms, with or without |
| 100 | + * modification, are permitted provided that the following conditions are met: |
| 101 | + * |
| 102 | + * 1. Redistributions of source code must retain the above copyright notice, |
| 103 | + * this list of conditions and the following disclaimer. |
| 104 | + * |
| 105 | + * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 106 | + * this list of conditions and the following disclaimer in the documentation |
| 107 | + * and/or other materials provided with the distribution. |
| 108 | + * |
| 109 | + * 3. Neither the name of Salesforce.com nor the names of its contributors may |
| 110 | + * be used to endorse or promote products derived from this software without |
| 111 | + * specific prior written permission. |
| 112 | + * |
| 113 | + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 114 | + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 115 | + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 116 | + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 117 | + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 118 | + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 119 | + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 120 | + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 121 | + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 122 | + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 123 | + * POSSIBILITY OF SUCH DAMAGE. |
| 124 | + */ |
| 125 | + |
| 126 | +/*! |
| 127 | + * Tmp |
| 128 | + * |
| 129 | + * Copyright (c) 2011-2017 KARASZI Istvan <github@spam.raszi.hu> |
| 130 | + * |
| 131 | + * MIT Licensed |
| 132 | + */ |
| 133 | + |
| 134 | +/*! |
| 135 | + * https://github.com/Starcounter-Jack/JSON-Patch |
| 136 | + * (c) 2017-2021 Joachim Wester |
| 137 | + * MIT license |
| 138 | + */ |
| 139 | + |
| 140 | +/*! |
| 141 | + * https://github.com/Starcounter-Jack/JSON-Patch |
| 142 | + * (c) 2017-2022 Joachim Wester |
| 143 | + * MIT licensed |
| 144 | + */ |
| 145 | + |
| 146 | +/*! |
| 147 | + * is-absolute <https://github.com/jonschlinkert/is-absolute> |
| 148 | + * |
| 149 | + * Copyright (c) 2014-2015, Jon Schlinkert. |
| 150 | + * Licensed under the MIT License. |
| 151 | + */ |
| 152 | + |
| 153 | +/*! |
| 154 | + * is-extglob <https://github.com/jonschlinkert/is-extglob> |
| 155 | + * |
| 156 | + * Copyright (c) 2014-2016, Jon Schlinkert. |
| 157 | + * Licensed under the MIT License. |
| 158 | + */ |
| 159 | + |
| 160 | +/*! |
| 161 | + * is-glob <https://github.com/jonschlinkert/is-glob> |
| 162 | + * |
| 163 | + * Copyright (c) 2014-2017, Jon Schlinkert. |
| 164 | + * Released under the MIT License. |
| 165 | + */ |
| 166 | + |
| 167 | +/*! |
| 168 | + * mime-db |
| 169 | + * Copyright(c) 2014 Jonathan Ong |
| 170 | + * Copyright(c) 2015-2022 Douglas Christopher Wilson |
| 171 | + * MIT Licensed |
| 172 | + */ |
| 173 | + |
| 174 | +/*! |
| 175 | + * mime-types |
| 176 | + * Copyright(c) 2014 Jonathan Ong |
| 177 | + * Copyright(c) 2015 Douglas Christopher Wilson |
| 178 | + * MIT Licensed |
| 179 | + */ |
| 180 | + |
| 181 | +/*! MIT License © Sindre Sorhus */ |
| 182 | + |
| 183 | +/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */ |
| 184 | + |
| 185 | +/*! http://mths.be/fromcodepoint v0.1.0 by @mathias */ |
| 186 | + |
| 187 | +/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */ |
| 188 | + |
| 189 | +/*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> */ |
| 190 | + |
| 191 | +/** |
| 192 | + * @fileoverview Main entrypoint for libraries using yargs-parser in Node.js |
| 193 | + * CJS and ESM environments. |
| 194 | + * |
| 195 | + * @license |
| 196 | + * Copyright (c) 2016, Contributors |
| 197 | + * SPDX-License-Identifier: ISC |
| 198 | + */ |
| 199 | + |
| 200 | +/** |
| 201 | + * @license |
| 202 | + * Copyright (c) 2016, Contributors |
| 203 | + * SPDX-License-Identifier: ISC |
| 204 | + */ |
| 205 | + |
| 206 | +/** |
| 207 | + * @license |
| 208 | + * Copyright 2016 Google LLC |
| 209 | + * SPDX-License-Identifier: Apache-2.0 |
| 210 | + */ |
| 211 | + |
| 212 | +/** |
| 213 | + * @license Copyright 2016 Google Inc. All Rights Reserved. |
| 214 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 |
| 215 | + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. |
| 216 | + */ |
| 217 | + |
| 218 | +/** |
| 219 | + * @license Copyright 2017 Google Inc. All Rights Reserved. |
| 220 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 |
| 221 | + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. |
| 222 | + */ |
| 223 | + |
| 224 | +/** |
| 225 | + * @preserve |
| 226 | + * JS Implementation of incremental MurmurHash3 (r150) (as of May 10, 2013) |
| 227 | + * |
| 228 | + * @author <a href="mailto:jensyt@gmail.com">Jens Taylor</a> |
| 229 | + * @see http://github.com/homebrewing/brauhaus-diff |
| 230 | + * @author <a href="mailto:gary.court@gmail.com">Gary Court</a> |
| 231 | + * @see http://github.com/garycourt/murmurhash-js |
| 232 | + * @author <a href="mailto:aappleby@gmail.com">Austin Appleby</a> |
| 233 | + * @see http://sites.google.com/site/murmurhash/ |
| 234 | + */ |
| 235 | + |
| 236 | +/** @license MIT License (c) copyright 2010-2014 original author or authors */ |
| 237 | + |
| 238 | +/** @license MIT License (c) copyright 2013 original author or authors */ |
| 239 | + |
| 240 | +/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */ |
0 commit comments