@ones-editor/server-tools 2.3.0-beta.14

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.
@@ -0,0 +1,157 @@
1
+ /*!
2
+ * decimal.js v10.4.3
3
+ * An arbitrary-precision Decimal type for JavaScript.
4
+ * https://github.com/MikeMcl/decimal.js
5
+ * Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
6
+ * MIT Licence
7
+ */
8
+
9
+ /*!
10
+ * Copyright (c) 2015, Salesforce.com, Inc.
11
+ * All rights reserved.
12
+ *
13
+ * Redistribution and use in source and binary forms, with or without
14
+ * modification, are permitted provided that the following conditions are met:
15
+ *
16
+ * 1. Redistributions of source code must retain the above copyright notice,
17
+ * this list of conditions and the following disclaimer.
18
+ *
19
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
20
+ * this list of conditions and the following disclaimer in the documentation
21
+ * and/or other materials provided with the distribution.
22
+ *
23
+ * 3. Neither the name of Salesforce.com nor the names of its contributors may
24
+ * be used to endorse or promote products derived from this software without
25
+ * specific prior written permission.
26
+ *
27
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
31
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37
+ * POSSIBILITY OF SUCH DAMAGE.
38
+ */
39
+
40
+ /*!
41
+ * Copyright (c) 2015-2020, Salesforce.com, Inc.
42
+ * All rights reserved.
43
+ *
44
+ * Redistribution and use in source and binary forms, with or without
45
+ * modification, are permitted provided that the following conditions are met:
46
+ *
47
+ * 1. Redistributions of source code must retain the above copyright notice,
48
+ * this list of conditions and the following disclaimer.
49
+ *
50
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
51
+ * this list of conditions and the following disclaimer in the documentation
52
+ * and/or other materials provided with the distribution.
53
+ *
54
+ * 3. Neither the name of Salesforce.com nor the names of its contributors may
55
+ * be used to endorse or promote products derived from this software without
56
+ * specific prior written permission.
57
+ *
58
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
59
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
62
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
63
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
64
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
65
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
66
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
67
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
68
+ * POSSIBILITY OF SUCH DAMAGE.
69
+ */
70
+
71
+ /*!
72
+ * Copyright (c) 2018, Salesforce.com, Inc.
73
+ * All rights reserved.
74
+ *
75
+ * Redistribution and use in source and binary forms, with or without
76
+ * modification, are permitted provided that the following conditions are met:
77
+ *
78
+ * 1. Redistributions of source code must retain the above copyright notice,
79
+ * this list of conditions and the following disclaimer.
80
+ *
81
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
82
+ * this list of conditions and the following disclaimer in the documentation
83
+ * and/or other materials provided with the distribution.
84
+ *
85
+ * 3. Neither the name of Salesforce.com nor the names of its contributors may
86
+ * be used to endorse or promote products derived from this software without
87
+ * specific prior written permission.
88
+ *
89
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
90
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
91
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
92
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
93
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
94
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
95
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
96
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
97
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
98
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
99
+ * POSSIBILITY OF SUCH DAMAGE.
100
+ */
101
+
102
+ /*!
103
+ * mime-db
104
+ * Copyright(c) 2014 Jonathan Ong
105
+ * Copyright(c) 2015-2022 Douglas Christopher Wilson
106
+ * MIT Licensed
107
+ */
108
+
109
+ /*!
110
+ * mime-types
111
+ * Copyright(c) 2014 Jonathan Ong
112
+ * Copyright(c) 2015 Douglas Christopher Wilson
113
+ * MIT Licensed
114
+ */
115
+
116
+ /**
117
+ * @license
118
+ * Lodash (Custom Build) <https://lodash.com/>
119
+ * Build: `lodash modularize exports="es" -o ./`
120
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
121
+ * Released under MIT license <https://lodash.com/license>
122
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
123
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
124
+ */
125
+
126
+ /**
127
+ * @name string-character-is-astral-surrogate
128
+ * @fileoverview Tells, is given character a part of astral character, specifically, a high and low surrogate
129
+ * @version 2.1.6
130
+ * @author Roy Revelt, Codsen Ltd
131
+ * @license MIT
132
+ * {@link https://codsen.com/os/string-character-is-astral-surrogate/}
133
+ */
134
+
135
+ /**
136
+ * Character class utilities for XML NS 1.0 edition 3.
137
+ *
138
+ * @author Louis-Dominique Dubeau
139
+ * @license MIT
140
+ * @copyright Louis-Dominique Dubeau
141
+ */
142
+
143
+ /**
144
+ * Character classes and associated utilities for the 2nd edition of XML 1.1.
145
+ *
146
+ * @author Louis-Dominique Dubeau
147
+ * @license MIT
148
+ * @copyright Louis-Dominique Dubeau
149
+ */
150
+
151
+ /**
152
+ * Character classes and associated utilities for the 5th edition of XML 1.0.
153
+ *
154
+ * @author Louis-Dominique Dubeau
155
+ * @license MIT
156
+ * @copyright Louis-Dominique Dubeau
157
+ */