@stdlib/utils-papply-right 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 +1 -1
- package/README.md +32 -3
- package/package.json +2 -1
- package/CHANGELOG.md +0 -5
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
|
# papplyRight
|
|
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
|
> Partially apply function arguments from the right.
|
|
26
26
|
|
|
@@ -135,6 +135,20 @@ for ( i = 0; i < 100; i++ ) {
|
|
|
135
135
|
|
|
136
136
|
<!-- /.references -->
|
|
137
137
|
|
|
138
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
139
|
+
|
|
140
|
+
<section class="related">
|
|
141
|
+
|
|
142
|
+
* * *
|
|
143
|
+
|
|
144
|
+
## See Also
|
|
145
|
+
|
|
146
|
+
- <span class="package-name">[`@stdlib/utils/papply`][@stdlib/utils/papply]</span><span class="delimiter">: </span><span class="description">partially apply function arguments.</span>
|
|
147
|
+
|
|
148
|
+
</section>
|
|
149
|
+
|
|
150
|
+
<!-- /.related -->
|
|
151
|
+
|
|
138
152
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
139
153
|
|
|
140
154
|
|
|
@@ -161,7 +175,7 @@ See [LICENSE][stdlib-license].
|
|
|
161
175
|
|
|
162
176
|
## Copyright
|
|
163
177
|
|
|
164
|
-
Copyright © 2016-
|
|
178
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
165
179
|
|
|
166
180
|
</section>
|
|
167
181
|
|
|
@@ -180,9 +194,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
180
194
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-papply-right/main.svg
|
|
181
195
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-papply-right?branch=main
|
|
182
196
|
|
|
197
|
+
<!--
|
|
198
|
+
|
|
183
199
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/utils-papply-right.svg
|
|
184
200
|
[dependencies-url]: https://david-dm.org/stdlib-js/utils-papply-right/main
|
|
185
201
|
|
|
202
|
+
-->
|
|
203
|
+
|
|
204
|
+
[umd]: https://github.com/umdjs/umd
|
|
205
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
206
|
+
|
|
207
|
+
[deno-url]: https://github.com/stdlib-js/utils-papply-right/tree/deno
|
|
208
|
+
[umd-url]: https://github.com/stdlib-js/utils-papply-right/tree/umd
|
|
209
|
+
[esm-url]: https://github.com/stdlib-js/utils-papply-right/tree/esm
|
|
210
|
+
|
|
186
211
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
187
212
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
188
213
|
|
|
@@ -192,7 +217,11 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
192
217
|
|
|
193
218
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/utils-papply-right/main/LICENSE
|
|
194
219
|
|
|
195
|
-
|
|
220
|
+
<!-- <related-links> -->
|
|
221
|
+
|
|
222
|
+
[@stdlib/utils/papply]: https://www.npmjs.com/package/@stdlib/utils-papply
|
|
223
|
+
|
|
224
|
+
<!-- </related-links> -->
|
|
196
225
|
|
|
197
226
|
</section>
|
|
198
227
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/utils-papply-right",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Partially apply function arguments from the right.",
|
|
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",
|