@stdlib/utils-reverse-arguments 0.1.1 → 0.2.0
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 +9 -3
- package/SECURITY.md +5 -0
- package/package.json +8 -7
- package/CITATION.cff +0 -30
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -161,6 +161,7 @@ out = bar( 1, 2, 3 );
|
|
|
161
161
|
|
|
162
162
|
## See Also
|
|
163
163
|
|
|
164
|
+
- <span class="package-name">[`@stdlib/utils-mask-arguments`][@stdlib/utils/mask-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function according to an argument mask.</span>
|
|
164
165
|
- <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>
|
|
165
166
|
|
|
166
167
|
</section>
|
|
@@ -193,7 +194,7 @@ See [LICENSE][stdlib-license].
|
|
|
193
194
|
|
|
194
195
|
## Copyright
|
|
195
196
|
|
|
196
|
-
Copyright © 2016-
|
|
197
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
197
198
|
|
|
198
199
|
</section>
|
|
199
200
|
|
|
@@ -206,8 +207,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
206
207
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/utils-reverse-arguments.svg
|
|
207
208
|
[npm-url]: https://npmjs.org/package/@stdlib/utils-reverse-arguments
|
|
208
209
|
|
|
209
|
-
[test-image]: https://github.com/stdlib-js/utils-reverse-arguments/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
210
|
-
[test-url]: https://github.com/stdlib-js/utils-reverse-arguments/actions/workflows/test.yml?query=branch:v0.
|
|
210
|
+
[test-image]: https://github.com/stdlib-js/utils-reverse-arguments/actions/workflows/test.yml/badge.svg?branch=v0.2.0
|
|
211
|
+
[test-url]: https://github.com/stdlib-js/utils-reverse-arguments/actions/workflows/test.yml?query=branch:v0.2.0
|
|
211
212
|
|
|
212
213
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-reverse-arguments/main.svg
|
|
213
214
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-reverse-arguments?branch=main
|
|
@@ -230,14 +231,19 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
230
231
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
231
232
|
|
|
232
233
|
[deno-url]: https://github.com/stdlib-js/utils-reverse-arguments/tree/deno
|
|
234
|
+
[deno-readme]: https://github.com/stdlib-js/utils-reverse-arguments/blob/deno/README.md
|
|
233
235
|
[umd-url]: https://github.com/stdlib-js/utils-reverse-arguments/tree/umd
|
|
236
|
+
[umd-readme]: https://github.com/stdlib-js/utils-reverse-arguments/blob/umd/README.md
|
|
234
237
|
[esm-url]: https://github.com/stdlib-js/utils-reverse-arguments/tree/esm
|
|
238
|
+
[esm-readme]: https://github.com/stdlib-js/utils-reverse-arguments/blob/esm/README.md
|
|
235
239
|
[branches-url]: https://github.com/stdlib-js/utils-reverse-arguments/blob/main/branches.md
|
|
236
240
|
|
|
237
241
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/utils-reverse-arguments/main/LICENSE
|
|
238
242
|
|
|
239
243
|
<!-- <related-links> -->
|
|
240
244
|
|
|
245
|
+
[@stdlib/utils/mask-arguments]: https://www.npmjs.com/package/@stdlib/utils-mask-arguments
|
|
246
|
+
|
|
241
247
|
[@stdlib/utils/reorder-arguments]: https://www.npmjs.com/package/@stdlib/utils-reorder-arguments
|
|
242
248
|
|
|
243
249
|
<!-- </related-links> -->
|
package/SECURITY.md
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/utils-reverse-arguments",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
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": {
|
|
@@ -37,17 +37,18 @@
|
|
|
37
37
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@stdlib/assert-is-function": "^0.
|
|
41
|
-
"@stdlib/string-format": "^0.
|
|
42
|
-
"@stdlib/error-tools-fmtprodmsg": "^0.1.
|
|
40
|
+
"@stdlib/assert-is-function": "^0.2.0",
|
|
41
|
+
"@stdlib/string-format": "^0.2.0",
|
|
42
|
+
"@stdlib/error-tools-fmtprodmsg": "^0.1.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@stdlib/assert-is-array": "^0.1.
|
|
46
|
-
"@stdlib/bench": "^0.1.0",
|
|
45
|
+
"@stdlib/assert-is-array": "^0.1.1",
|
|
47
46
|
"@stdlib/random-base-randu": "^0.1.0",
|
|
48
47
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
49
48
|
"istanbul": "^0.4.1",
|
|
50
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
49
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
50
|
+
"@stdlib/bench-harness": "^0.1.2",
|
|
51
|
+
"@stdlib/bench": "^0.3.1"
|
|
51
52
|
},
|
|
52
53
|
"engines": {
|
|
53
54
|
"node": ">=0.10.0",
|
package/CITATION.cff
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
cff-version: 1.2.0
|
|
2
|
-
title: stdlib
|
|
3
|
-
message: >-
|
|
4
|
-
If you use this software, please cite it using the
|
|
5
|
-
metadata from this file.
|
|
6
|
-
|
|
7
|
-
type: software
|
|
8
|
-
|
|
9
|
-
authors:
|
|
10
|
-
- name: The Stdlib Authors
|
|
11
|
-
url: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
12
|
-
|
|
13
|
-
repository-code: https://github.com/stdlib-js/stdlib
|
|
14
|
-
url: https://stdlib.io
|
|
15
|
-
|
|
16
|
-
abstract: |
|
|
17
|
-
Standard library for JavaScript and Node.js.
|
|
18
|
-
|
|
19
|
-
keywords:
|
|
20
|
-
- JavaScript
|
|
21
|
-
- Node.js
|
|
22
|
-
- TypeScript
|
|
23
|
-
- standard library
|
|
24
|
-
- scientific computing
|
|
25
|
-
- numerical computing
|
|
26
|
-
- statistical computing
|
|
27
|
-
|
|
28
|
-
license: Apache-2.0 AND BSL-1.0
|
|
29
|
-
|
|
30
|
-
date-released: 2016
|