@stdlib/utils-reverse-arguments 0.0.4 → 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 CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2021 The Stdlib Authors.
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 &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
185
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
172
186
 
173
187
  </section>
174
188
 
@@ -187,9 +201,20 @@ Copyright &copy; 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 &copy; 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
@@ -38,9 +38,9 @@
38
38
 
39
39
  // MODULES //
40
40
 
41
- var reverseArguments = require( './reverse_arguments.js' );
41
+ var main = require( './main.js' );
42
42
 
43
43
 
44
44
  // EXPORTS //
45
45
 
46
- module.exports = reverseArguments;
46
+ module.exports = main;
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/utils-reverse-arguments",
3
- "version": "0.0.4",
3
+ "version": "0.0.8",
4
4
  "description": "Create a function that invokes a provided function with arguments in reverse order.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -15,6 +15,7 @@
15
15
  ],
16
16
  "main": "./lib",
17
17
  "directories": {
18
+ "benchmark": "./benchmark",
18
19
  "doc": "./docs",
19
20
  "example": "./examples",
20
21
  "lib": "./lib",
package/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- # CHANGELOG
2
-
3
- > Package changelog.
4
-
5
- See [GitHub Releases](https://github.com/stdlib-js/utils-reverse-arguments/releases) for the changelog.