@stdlib/assert-is-float64ndarray-like 0.0.2 → 0.0.6
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 +47 -4
- package/package.json +2 -2
- 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
|
# isFloat64ndarrayLike
|
|
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
|
> Test if a value is an [ndarray][@stdlib/ndarray/ctor]-like object containing double-precision floating-point numbers.
|
|
26
26
|
|
|
@@ -91,6 +91,23 @@ out = isFloat64ndarrayLike( null );
|
|
|
91
91
|
|
|
92
92
|
<!-- /.examples -->
|
|
93
93
|
|
|
94
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
95
|
+
|
|
96
|
+
<section class="related">
|
|
97
|
+
|
|
98
|
+
* * *
|
|
99
|
+
|
|
100
|
+
## See Also
|
|
101
|
+
|
|
102
|
+
- <span class="package-name">[`@stdlib/assert/is-float32ndarray-like`][@stdlib/assert/is-float32ndarray-like]</span><span class="delimiter">: </span><span class="description">test if a value is an ndarray-like object containing single-precision floating-point numbers.</span>
|
|
103
|
+
- <span class="package-name">[`@stdlib/assert/is-ndarray-like`][@stdlib/assert/is-ndarray-like]</span><span class="delimiter">: </span><span class="description">test if a value is ndarray-like.</span>
|
|
104
|
+
|
|
105
|
+
</section>
|
|
106
|
+
|
|
107
|
+
<!-- /.related -->
|
|
108
|
+
|
|
109
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
110
|
+
|
|
94
111
|
|
|
95
112
|
<section class="main-repo" >
|
|
96
113
|
|
|
@@ -102,6 +119,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
|
|
|
102
119
|
|
|
103
120
|
For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib].
|
|
104
121
|
|
|
122
|
+
#### Community
|
|
123
|
+
|
|
124
|
+
[![Chat][chat-image]][chat-url]
|
|
125
|
+
|
|
105
126
|
---
|
|
106
127
|
|
|
107
128
|
## License
|
|
@@ -111,7 +132,7 @@ See [LICENSE][stdlib-license].
|
|
|
111
132
|
|
|
112
133
|
## Copyright
|
|
113
134
|
|
|
114
|
-
Copyright © 2016-
|
|
135
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
115
136
|
|
|
116
137
|
</section>
|
|
117
138
|
|
|
@@ -130,16 +151,38 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
130
151
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-float64ndarray-like/main.svg
|
|
131
152
|
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-float64ndarray-like?branch=main
|
|
132
153
|
|
|
133
|
-
|
|
154
|
+
<!--
|
|
155
|
+
|
|
156
|
+
[dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-float64ndarray-like.svg
|
|
134
157
|
[dependencies-url]: https://david-dm.org/stdlib-js/assert-is-float64ndarray-like/main
|
|
135
158
|
|
|
159
|
+
-->
|
|
160
|
+
|
|
161
|
+
[umd]: https://github.com/umdjs/umd
|
|
162
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
163
|
+
|
|
164
|
+
[deno-url]: https://github.com/stdlib-js/assert-is-float64ndarray-like/tree/deno
|
|
165
|
+
[umd-url]: https://github.com/stdlib-js/assert-is-float64ndarray-like/tree/umd
|
|
166
|
+
[esm-url]: https://github.com/stdlib-js/assert-is-float64ndarray-like/tree/esm
|
|
167
|
+
|
|
168
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
169
|
+
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
170
|
+
|
|
136
171
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
137
172
|
|
|
138
173
|
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
139
174
|
|
|
140
175
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-float64ndarray-like/main/LICENSE
|
|
141
176
|
|
|
142
|
-
[@stdlib/ndarray/ctor]: https://
|
|
177
|
+
[@stdlib/ndarray/ctor]: https://www.npmjs.com/package/@stdlib/ndarray-ctor
|
|
178
|
+
|
|
179
|
+
<!-- <related-links> -->
|
|
180
|
+
|
|
181
|
+
[@stdlib/assert/is-float32ndarray-like]: https://www.npmjs.com/package/@stdlib/assert-is-float32ndarray-like
|
|
182
|
+
|
|
183
|
+
[@stdlib/assert/is-ndarray-like]: https://www.npmjs.com/package/@stdlib/assert-is-ndarray-like
|
|
184
|
+
|
|
185
|
+
<!-- </related-links> -->
|
|
143
186
|
|
|
144
187
|
</section>
|
|
145
188
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/assert-is-float64ndarray-like",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Test if a value is an ndarray-like object containing double-precision floating-point numbers.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"examples": "make examples",
|
|
29
29
|
"benchmark": "make benchmark"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://
|
|
31
|
+
"homepage": "https://stdlib.io",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git://github.com/stdlib-js/assert-is-float64ndarray-like.git"
|