@stdlib/utils-pick-by 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
|
# pickBy
|
|
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
|
> Return a partial object copy containing properties for which a predicate (function) returns a truthy value.
|
|
26
26
|
|
|
@@ -126,6 +126,20 @@ var obj2 = pickBy( obj1, predicate );
|
|
|
126
126
|
|
|
127
127
|
<!-- /.references -->
|
|
128
128
|
|
|
129
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
130
|
+
|
|
131
|
+
<section class="related">
|
|
132
|
+
|
|
133
|
+
* * *
|
|
134
|
+
|
|
135
|
+
## See Also
|
|
136
|
+
|
|
137
|
+
- <span class="package-name">[`@stdlib/utils/pick`][@stdlib/utils/pick]</span><span class="delimiter">: </span><span class="description">return a partial object copy containing only specified keys.</span>
|
|
138
|
+
|
|
139
|
+
</section>
|
|
140
|
+
|
|
141
|
+
<!-- /.related -->
|
|
142
|
+
|
|
129
143
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
130
144
|
|
|
131
145
|
|
|
@@ -152,7 +166,7 @@ See [LICENSE][stdlib-license].
|
|
|
152
166
|
|
|
153
167
|
## Copyright
|
|
154
168
|
|
|
155
|
-
Copyright © 2016-
|
|
169
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
156
170
|
|
|
157
171
|
</section>
|
|
158
172
|
|
|
@@ -171,9 +185,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
171
185
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-pick-by/main.svg
|
|
172
186
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-pick-by?branch=main
|
|
173
187
|
|
|
188
|
+
<!--
|
|
189
|
+
|
|
174
190
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/utils-pick-by.svg
|
|
175
191
|
[dependencies-url]: https://david-dm.org/stdlib-js/utils-pick-by/main
|
|
176
192
|
|
|
193
|
+
-->
|
|
194
|
+
|
|
195
|
+
[umd]: https://github.com/umdjs/umd
|
|
196
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
197
|
+
|
|
198
|
+
[deno-url]: https://github.com/stdlib-js/utils-pick-by/tree/deno
|
|
199
|
+
[umd-url]: https://github.com/stdlib-js/utils-pick-by/tree/umd
|
|
200
|
+
[esm-url]: https://github.com/stdlib-js/utils-pick-by/tree/esm
|
|
201
|
+
|
|
177
202
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
178
203
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
179
204
|
|
|
@@ -183,6 +208,12 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
183
208
|
|
|
184
209
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/utils-pick-by/main/LICENSE
|
|
185
210
|
|
|
211
|
+
<!-- <related-links> -->
|
|
212
|
+
|
|
213
|
+
[@stdlib/utils/pick]: https://www.npmjs.com/package/@stdlib/utils-pick
|
|
214
|
+
|
|
215
|
+
<!-- </related-links> -->
|
|
216
|
+
|
|
186
217
|
</section>
|
|
187
218
|
|
|
188
219
|
<!-- /.links -->
|
package/package.json
CHANGED