@stdlib/array-mskfilter 0.1.1 → 0.1.3
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 +17 -5
- package/package.json +8 -8
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2026 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -118,6 +118,12 @@ console.log( y );
|
|
|
118
118
|
|
|
119
119
|
<section class="related">
|
|
120
120
|
|
|
121
|
+
* * *
|
|
122
|
+
|
|
123
|
+
## See Also
|
|
124
|
+
|
|
125
|
+
- <span class="package-name">[`@stdlib/array-mskreject`][@stdlib/array/mskreject]</span><span class="delimiter">: </span><span class="description">apply a mask to a provided input array.</span>
|
|
126
|
+
|
|
121
127
|
</section>
|
|
122
128
|
|
|
123
129
|
<!-- /.related -->
|
|
@@ -148,7 +154,7 @@ See [LICENSE][stdlib-license].
|
|
|
148
154
|
|
|
149
155
|
## Copyright
|
|
150
156
|
|
|
151
|
-
Copyright © 2016-
|
|
157
|
+
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
|
|
152
158
|
|
|
153
159
|
</section>
|
|
154
160
|
|
|
@@ -161,8 +167,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
161
167
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-mskfilter.svg
|
|
162
168
|
[npm-url]: https://npmjs.org/package/@stdlib/array-mskfilter
|
|
163
169
|
|
|
164
|
-
[test-image]: https://github.com/stdlib-js/array-mskfilter/actions/workflows/test.yml/badge.svg?branch=v0.1.
|
|
165
|
-
[test-url]: https://github.com/stdlib-js/array-mskfilter/actions/workflows/test.yml?query=branch:v0.1.
|
|
170
|
+
[test-image]: https://github.com/stdlib-js/array-mskfilter/actions/workflows/test.yml/badge.svg?branch=v0.1.3
|
|
171
|
+
[test-url]: https://github.com/stdlib-js/array-mskfilter/actions/workflows/test.yml?query=branch:v0.1.3
|
|
166
172
|
|
|
167
173
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-mskfilter/main.svg
|
|
168
174
|
[coverage-url]: https://codecov.io/github/stdlib-js/array-mskfilter?branch=main
|
|
@@ -174,8 +180,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
174
180
|
|
|
175
181
|
-->
|
|
176
182
|
|
|
177
|
-
[chat-image]: https://img.shields.io/
|
|
178
|
-
[chat-url]: https://
|
|
183
|
+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
|
|
184
|
+
[chat-url]: https://stdlib.zulipchat.com
|
|
179
185
|
|
|
180
186
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
181
187
|
|
|
@@ -196,6 +202,12 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
196
202
|
|
|
197
203
|
[@stdlib/array/dtypes]: https://www.npmjs.com/package/@stdlib/array-dtypes
|
|
198
204
|
|
|
205
|
+
<!-- <related-links> -->
|
|
206
|
+
|
|
207
|
+
[@stdlib/array/mskreject]: https://www.npmjs.com/package/@stdlib/array-mskreject
|
|
208
|
+
|
|
209
|
+
<!-- </related-links> -->
|
|
210
|
+
|
|
199
211
|
</section>
|
|
200
212
|
|
|
201
213
|
<!-- /.links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/array-mskfilter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Apply a mask to a provided input array.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@stdlib/array-base-count-truthy": "^0.
|
|
34
|
-
"@stdlib/array-base-mskfilter": "^0.
|
|
35
|
-
"@stdlib/array-dtype": "^0.
|
|
36
|
-
"@stdlib/array-zeros": "^0.2.
|
|
37
|
-
"@stdlib/assert-is-collection": "^0.2.
|
|
38
|
-
"@stdlib/string-format": "^0.2.
|
|
39
|
-
"@stdlib/error-tools-fmtprodmsg": "^0.2.
|
|
33
|
+
"@stdlib/array-base-count-truthy": "^0.2.1",
|
|
34
|
+
"@stdlib/array-base-mskfilter": "^0.3.0",
|
|
35
|
+
"@stdlib/array-dtype": "^0.3.1",
|
|
36
|
+
"@stdlib/array-zeros": "^0.2.3",
|
|
37
|
+
"@stdlib/assert-is-collection": "^0.2.3",
|
|
38
|
+
"@stdlib/string-format": "^0.2.3",
|
|
39
|
+
"@stdlib/error-tools-fmtprodmsg": "^0.2.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {},
|
|
42
42
|
"engines": {
|