@stdlib/array-mskreject 0.1.0 → 0.1.2
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/README.md +14 -2
- package/dist/index.js +1 -1
- package/package.json +8 -7
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-mskfilter`][@stdlib/array/mskfilter]</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 -->
|
|
@@ -161,8 +167,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
161
167
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-mskreject.svg
|
|
162
168
|
[npm-url]: https://npmjs.org/package/@stdlib/array-mskreject
|
|
163
169
|
|
|
164
|
-
[test-image]: https://github.com/stdlib-js/array-mskreject/actions/workflows/test.yml/badge.svg?branch=v0.1.
|
|
165
|
-
[test-url]: https://github.com/stdlib-js/array-mskreject/actions/workflows/test.yml?query=branch:v0.1.
|
|
170
|
+
[test-image]: https://github.com/stdlib-js/array-mskreject/actions/workflows/test.yml/badge.svg?branch=v0.1.2
|
|
171
|
+
[test-url]: https://github.com/stdlib-js/array-mskreject/actions/workflows/test.yml?query=branch:v0.1.2
|
|
166
172
|
|
|
167
173
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-mskreject/main.svg
|
|
168
174
|
[coverage-url]: https://codecov.io/github/stdlib-js/array-mskreject?branch=main
|
|
@@ -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/mskfilter]: https://www.npmjs.com/package/@stdlib/array-mskfilter
|
|
208
|
+
|
|
209
|
+
<!-- </related-links> -->
|
|
210
|
+
|
|
199
211
|
</section>
|
|
200
212
|
|
|
201
213
|
<!-- /.links -->
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";var l=function(e,r){return function(){return r||e((r={exports:{}}).exports,r),r.exports}};var o=l(function(y,u){
|
|
2
|
-
var a=require('@stdlib/assert-is-collection/dist'),n=require('@stdlib/array-base-mskreject/dist'),s=require('@stdlib/array-base-count-falsy/dist'),v=require('@stdlib/array-zeros/dist'),c=require('@stdlib/array-dtype/dist'),i=require('@stdlib/error-tools-fmtprodmsg/dist');function g(e,r){var t;if(!a(e))throw new TypeError(i('
|
|
2
|
+
var a=require('@stdlib/assert-is-collection/dist'),n=require('@stdlib/array-base-mskreject/dist'),s=require('@stdlib/array-base-count-falsy/dist'),v=require('@stdlib/array-zeros/dist'),c=require('@stdlib/array-dtype/dist'),i=require('@stdlib/error-tools-fmtprodmsg/dist');function g(e,r){var t;if(!a(e))throw new TypeError(i('1sF2O',e));if(!a(r))throw new TypeError(i('1sF2y',r));if(e.length!==r.length)throw new Error(i('1sFFd'));return t=c(e),t==="generic"||t===null?n(e,r):n.assign(e,r,v(s(r),t),1,0)}u.exports=g
|
|
3
3
|
});var q=o();module.exports=q;
|
|
4
4
|
/** @license Apache-2.0 */
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/array-mskreject",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Apply a mask to a provided input array.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -30,12 +30,13 @@
|
|
|
30
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@stdlib/array-base-count-falsy": "^0.
|
|
34
|
-
"@stdlib/array-base-mskreject": "^0.2.
|
|
35
|
-
"@stdlib/array-dtype": "^0.
|
|
36
|
-
"@stdlib/array-zeros": "^0.2.
|
|
37
|
-
"@stdlib/assert-is-collection": "^0.2.
|
|
38
|
-
"@stdlib/string-format": "^0.2.
|
|
33
|
+
"@stdlib/array-base-count-falsy": "^0.2.0",
|
|
34
|
+
"@stdlib/array-base-mskreject": "^0.2.1",
|
|
35
|
+
"@stdlib/array-dtype": "^0.3.0",
|
|
36
|
+
"@stdlib/array-zeros": "^0.2.2",
|
|
37
|
+
"@stdlib/assert-is-collection": "^0.2.2",
|
|
38
|
+
"@stdlib/string-format": "^0.2.2",
|
|
39
|
+
"@stdlib/error-tools-fmtprodmsg": "^0.2.2"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {},
|
|
41
42
|
"engines": {
|