@stdlib/utils-map-function 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/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
|
# mapFun
|
|
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
|
> Invoke a function `n` times and return an array of accumulated function return values.
|
|
26
26
|
|
|
@@ -132,6 +132,20 @@ console.log( arr );
|
|
|
132
132
|
|
|
133
133
|
<!-- /.references -->
|
|
134
134
|
|
|
135
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
136
|
+
|
|
137
|
+
<section class="related">
|
|
138
|
+
|
|
139
|
+
* * *
|
|
140
|
+
|
|
141
|
+
## See Also
|
|
142
|
+
|
|
143
|
+
- <span class="package-name">[`@stdlib/utils/async/map-function`][@stdlib/utils/async/map-function]</span><span class="delimiter">: </span><span class="description">invoke a function n times and return an array of accumulated function return values.</span>
|
|
144
|
+
|
|
145
|
+
</section>
|
|
146
|
+
|
|
147
|
+
<!-- /.related -->
|
|
148
|
+
|
|
135
149
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
136
150
|
|
|
137
151
|
|
|
@@ -158,7 +172,7 @@ See [LICENSE][stdlib-license].
|
|
|
158
172
|
|
|
159
173
|
## Copyright
|
|
160
174
|
|
|
161
|
-
Copyright © 2016-
|
|
175
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
162
176
|
|
|
163
177
|
</section>
|
|
164
178
|
|
|
@@ -177,9 +191,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
177
191
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-map-function/main.svg
|
|
178
192
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-map-function?branch=main
|
|
179
193
|
|
|
194
|
+
<!--
|
|
195
|
+
|
|
180
196
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/utils-map-function.svg
|
|
181
197
|
[dependencies-url]: https://david-dm.org/stdlib-js/utils-map-function/main
|
|
182
198
|
|
|
199
|
+
-->
|
|
200
|
+
|
|
201
|
+
[umd]: https://github.com/umdjs/umd
|
|
202
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
203
|
+
|
|
204
|
+
[deno-url]: https://github.com/stdlib-js/utils-map-function/tree/deno
|
|
205
|
+
[umd-url]: https://github.com/stdlib-js/utils-map-function/tree/umd
|
|
206
|
+
[esm-url]: https://github.com/stdlib-js/utils-map-function/tree/esm
|
|
207
|
+
|
|
183
208
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
184
209
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
185
210
|
|
|
@@ -189,6 +214,12 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
189
214
|
|
|
190
215
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/utils-map-function/main/LICENSE
|
|
191
216
|
|
|
217
|
+
<!-- <related-links> -->
|
|
218
|
+
|
|
219
|
+
[@stdlib/utils/async/map-function]: https://www.npmjs.com/package/@stdlib/utils-async-map-function
|
|
220
|
+
|
|
221
|
+
<!-- </related-links> -->
|
|
222
|
+
|
|
192
223
|
</section>
|
|
193
224
|
|
|
194
225
|
<!-- /.links -->
|