@rsdoctor/cli 1.3.3-alpha.0 → 1.3.3-alpha.1

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,3 +1,179 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*!
8
+ * Check to see if the MemoizeMap has recorded a result of the two operands
9
+ *
10
+ * @param {Mixed} leftHandOperand
11
+ * @param {Mixed} rightHandOperand
12
+ * @param {MemoizeMap} memoizeMap
13
+ * @returns {Boolean|null} result
14
+ */
15
+
16
+ /*!
17
+ * Compare two Regular Expressions for equality.
18
+ *
19
+ * @param {RegExp} leftHandOperand
20
+ * @param {RegExp} rightHandOperand
21
+ * @return {Boolean} result
22
+ */
23
+
24
+ /*!
25
+ * Compare two Sets/Maps for equality. Faster than other equality functions.
26
+ *
27
+ * @param {Set} leftHandOperand
28
+ * @param {Set} rightHandOperand
29
+ * @param {Object} [options] (Optional)
30
+ * @return {Boolean} result
31
+ */
32
+
33
+ /*!
34
+ * Determine if the given object has an @@iterator function.
35
+ *
36
+ * @param {Object} target
37
+ * @return {Boolean} `true` if the object has an @@iterator function.
38
+ */
39
+
40
+ /*!
41
+ * Determines if two objects have matching values, given a set of keys. Defers to deepEqual for the equality check of
42
+ * each key. If any value of the given key is not equal, the function will return false (early).
43
+ *
44
+ * @param {Mixed} leftHandOperand
45
+ * @param {Mixed} rightHandOperand
46
+ * @param {Array} keys An array of keys to compare the values of leftHandOperand and rightHandOperand against
47
+ * @param {Object} [options] (Optional)
48
+ * @return {Boolean} result
49
+ */
50
+
51
+ /*!
52
+ * Gets all entries from a Generator. This will consume the generator - which could have side effects.
53
+ *
54
+ * @param {Generator} target
55
+ * @returns {Array} an array of entries from the Generator.
56
+ */
57
+
58
+ /*!
59
+ * Gets all iterator entries from the given Object. If the Object has no @@iterator function, returns an empty array.
60
+ * This will consume the iterator - which could have side effects depending on the @@iterator implementation.
61
+ *
62
+ * @param {Object} target
63
+ * @returns {Array} an array of entries from the @@iterator function
64
+ */
65
+
66
+ /*!
67
+ * Gets all own and inherited enumerable keys from a target.
68
+ *
69
+ * @param {Object} target
70
+ * @returns {Array} an array of own and inherited enumerable keys from the target.
71
+ */
72
+
73
+ /*!
74
+ * Primary Export
75
+ */
76
+
77
+ /*!
78
+ * Recursively check the equality of two Objects. Once basic sameness has been established it will defer to `deepEqual`
79
+ * for each enumerable key in the object.
80
+ *
81
+ * @param {Mixed} leftHandOperand
82
+ * @param {Mixed} rightHandOperand
83
+ * @param {Object} [options] (Optional)
84
+ * @return {Boolean} result
85
+ */
86
+
87
+ /*!
88
+ * Returns true if the argument is a primitive.
89
+ *
90
+ * This intentionally returns true for all objects that can be compared by reference,
91
+ * including functions and symbols.
92
+ *
93
+ * @param {Mixed} value
94
+ * @return {Boolean} result
95
+ */
96
+
97
+ /*!
98
+ * Set the result of the equality into the MemoizeMap
99
+ *
100
+ * @param {Mixed} leftHandOperand
101
+ * @param {Mixed} rightHandOperand
102
+ * @param {MemoizeMap} memoizeMap
103
+ * @param {Boolean} result
104
+ */
105
+
106
+ /*!
107
+ * Simple equality for flat iterable objects such as Arrays, TypedArrays or Node.js buffers.
108
+ *
109
+ * @param {Iterable} leftHandOperand
110
+ * @param {Iterable} rightHandOperand
111
+ * @param {Object} [options] (Optional)
112
+ * @return {Boolean} result
113
+ */
114
+
115
+ /*!
116
+ * Simple equality for generator objects such as those returned by generator functions.
117
+ *
118
+ * @param {Iterable} leftHandOperand
119
+ * @param {Iterable} rightHandOperand
120
+ * @param {Object} [options] (Optional)
121
+ * @return {Boolean} result
122
+ */
123
+
124
+ /*!
125
+ * The main logic of the `deepEqual` function.
126
+ *
127
+ * @param {Mixed} leftHandOperand
128
+ * @param {Mixed} rightHandOperand
129
+ * @param {Object} [options] (optional) Additional options
130
+ * @param {Array} [options.comparator] (optional) Override default algorithm, determining custom equality.
131
+ * @param {Array} [options.memoize] (optional) Provide a custom memoization object which will cache the results of
132
+ complex objects for a speed boost. By passing `false` you can disable memoization, but this will cause circular
133
+ references to blow the stack.
134
+ * @return {Boolean} equal match
135
+ */
136
+
137
+ /*!
138
+ * connect
139
+ * Copyright(c) 2010 Sencha Inc.
140
+ * Copyright(c) 2011 TJ Holowaychuk
141
+ * Copyright(c) 2015 Douglas Christopher Wilson
142
+ * MIT Licensed
143
+ */
144
+
145
+ /*!
146
+ * deep-eql
147
+ * Copyright(c) 2013 Jake Luer <jake@alogicalparadox.com>
148
+ * MIT Licensed
149
+ */
150
+
151
+ /*!
152
+ * ee-first
153
+ * Copyright(c) 2014 Jonathan Ong
154
+ * MIT Licensed
155
+ */
156
+
157
+ /*!
158
+ * encodeurl
159
+ * Copyright(c) 2016 Douglas Christopher Wilson
160
+ * MIT Licensed
161
+ */
162
+
163
+ /*!
164
+ * escape-html
165
+ * Copyright(c) 2012-2013 TJ Holowaychuk
166
+ * Copyright(c) 2015 Andreas Lubbe
167
+ * Copyright(c) 2015 Tiancheng "Timothy" Gu
168
+ * MIT Licensed
169
+ */
170
+
171
+ /*!
172
+ * finalhandler
173
+ * Copyright(c) 2014-2017 Douglas Christopher Wilson
174
+ * MIT Licensed
175
+ */
176
+
1
177
  /*!
2
178
  * mime-db
3
179
  * Copyright(c) 2014 Jonathan Ong
@@ -12,4 +188,45 @@
12
188
  * MIT Licensed
13
189
  */
14
190
 
15
- /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
191
+ /*!
192
+ * on-finished
193
+ * Copyright(c) 2013 Jonathan Ong
194
+ * Copyright(c) 2014 Douglas Christopher Wilson
195
+ * MIT Licensed
196
+ */
197
+
198
+ /*!
199
+ * parseurl
200
+ * Copyright(c) 2014 Jonathan Ong
201
+ * Copyright(c) 2014-2017 Douglas Christopher Wilson
202
+ * MIT Licensed
203
+ */
204
+
205
+ /*!
206
+ * statuses
207
+ * Copyright(c) 2014 Jonathan Ong
208
+ * Copyright(c) 2016 Douglas Christopher Wilson
209
+ * MIT Licensed
210
+ */
211
+
212
+ /*!
213
+ * unpipe
214
+ * Copyright(c) 2015 Douglas Christopher Wilson
215
+ * MIT Licensed
216
+ */
217
+
218
+ /*!
219
+ * vary
220
+ * Copyright(c) 2014-2017 Douglas Christopher Wilson
221
+ * MIT Licensed
222
+ */
223
+
224
+ /*! For license information please see index.js.LICENSE.txt */
225
+
226
+ /**
227
+ * filesize
228
+ *
229
+ * @copyright 2024 Jason Mulligan <jason.mulligan@avoidwork.com>
230
+ * @license BSD-3-Clause
231
+ * @version 10.1.6
232
+ */