@stdlib/assert-is-float64ndarray-like 0.0.5 → 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 +38 -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
|
# 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
|
|
|
@@ -115,7 +132,7 @@ See [LICENSE][stdlib-license].
|
|
|
115
132
|
|
|
116
133
|
## Copyright
|
|
117
134
|
|
|
118
|
-
Copyright © 2016-
|
|
135
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
119
136
|
|
|
120
137
|
</section>
|
|
121
138
|
|
|
@@ -134,9 +151,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
134
151
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-float64ndarray-like/main.svg
|
|
135
152
|
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-float64ndarray-like?branch=main
|
|
136
153
|
|
|
154
|
+
<!--
|
|
155
|
+
|
|
137
156
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-float64ndarray-like.svg
|
|
138
157
|
[dependencies-url]: https://david-dm.org/stdlib-js/assert-is-float64ndarray-like/main
|
|
139
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
|
+
|
|
140
168
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
141
169
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
142
170
|
|
|
@@ -148,6 +176,14 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
148
176
|
|
|
149
177
|
[@stdlib/ndarray/ctor]: https://www.npmjs.com/package/@stdlib/ndarray-ctor
|
|
150
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> -->
|
|
186
|
+
|
|
151
187
|
</section>
|
|
152
188
|
|
|
153
189
|
<!-- /.links -->
|
package/package.json
CHANGED