@stdlib/utils-reverse-arguments 0.0.7 → 0.0.8
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.
- package/NOTICE +1 -1
- package/README.md +33 -2
- package/lib/index.js +2 -2
- package/lib/{reverse_arguments.js → main.js} +0 -0
- package/package.json +1 -1
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# reverseArguments
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Create a function that invokes a provided function with arguments in reverse order.
|
|
26
26
|
|
|
@@ -142,6 +142,20 @@ out = bar( 1, 2, 3 );
|
|
|
142
142
|
|
|
143
143
|
<!-- /.references -->
|
|
144
144
|
|
|
145
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
146
|
+
|
|
147
|
+
<section class="related">
|
|
148
|
+
|
|
149
|
+
* * *
|
|
150
|
+
|
|
151
|
+
## See Also
|
|
152
|
+
|
|
153
|
+
- <span class="package-name">[`@stdlib/utils/reorder-arguments`][@stdlib/utils/reorder-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function with reordered arguments.</span>
|
|
154
|
+
|
|
155
|
+
</section>
|
|
156
|
+
|
|
157
|
+
<!-- /.related -->
|
|
158
|
+
|
|
145
159
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
146
160
|
|
|
147
161
|
|
|
@@ -168,7 +182,7 @@ See [LICENSE][stdlib-license].
|
|
|
168
182
|
|
|
169
183
|
## Copyright
|
|
170
184
|
|
|
171
|
-
Copyright © 2016-
|
|
185
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
172
186
|
|
|
173
187
|
</section>
|
|
174
188
|
|
|
@@ -187,9 +201,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
187
201
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-reverse-arguments/main.svg
|
|
188
202
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-reverse-arguments?branch=main
|
|
189
203
|
|
|
204
|
+
<!--
|
|
205
|
+
|
|
190
206
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/utils-reverse-arguments.svg
|
|
191
207
|
[dependencies-url]: https://david-dm.org/stdlib-js/utils-reverse-arguments/main
|
|
192
208
|
|
|
209
|
+
-->
|
|
210
|
+
|
|
211
|
+
[umd]: https://github.com/umdjs/umd
|
|
212
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
213
|
+
|
|
214
|
+
[deno-url]: https://github.com/stdlib-js/utils-reverse-arguments/tree/deno
|
|
215
|
+
[umd-url]: https://github.com/stdlib-js/utils-reverse-arguments/tree/umd
|
|
216
|
+
[esm-url]: https://github.com/stdlib-js/utils-reverse-arguments/tree/esm
|
|
217
|
+
|
|
193
218
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
194
219
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
195
220
|
|
|
@@ -199,6 +224,12 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
199
224
|
|
|
200
225
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/utils-reverse-arguments/main/LICENSE
|
|
201
226
|
|
|
227
|
+
<!-- <related-links> -->
|
|
228
|
+
|
|
229
|
+
[@stdlib/utils/reorder-arguments]: https://www.npmjs.com/package/@stdlib/utils-reorder-arguments
|
|
230
|
+
|
|
231
|
+
<!-- </related-links> -->
|
|
232
|
+
|
|
202
233
|
</section>
|
|
203
234
|
|
|
204
235
|
<!-- /.links -->
|
package/lib/index.js
CHANGED
|
File without changes
|