@stdlib/assert-is-float64matrix-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 CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2021 The Stdlib Authors.
1
+ Copyright (c) 2016-2022 The Stdlib Authors.
package/README.md CHANGED
@@ -20,7 +20,7 @@ limitations under the License.
20
20
 
21
21
  # isFloat64MatrixLike
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 a 2-dimensional [ndarray][@stdlib/ndarray/ctor]-like object containing double-precision floating-point numbers.
26
26
 
@@ -91,6 +91,24 @@ out = isFloat64MatrixLike( 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-float32matrix-like`][@stdlib/assert/is-float32matrix-like]</span><span class="delimiter">: </span><span class="description">test if a value is a 2-dimensional 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
+ - <span class="package-name">[`@stdlib/assert/is-matrix-like`][@stdlib/assert/is-matrix-like]</span><span class="delimiter">: </span><span class="description">test if a value is a 2-dimensional ndarray-like object.</span>
105
+
106
+ </section>
107
+
108
+ <!-- /.related -->
109
+
110
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
111
+
94
112
 
95
113
  <section class="main-repo" >
96
114
 
@@ -102,6 +120,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
102
120
 
103
121
  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
122
 
123
+ #### Community
124
+
125
+ [![Chat][chat-image]][chat-url]
126
+
105
127
  ---
106
128
 
107
129
  ## License
@@ -111,7 +133,7 @@ See [LICENSE][stdlib-license].
111
133
 
112
134
  ## Copyright
113
135
 
114
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
136
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
115
137
 
116
138
  </section>
117
139
 
@@ -130,16 +152,40 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
130
152
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-float64matrix-like/main.svg
131
153
  [coverage-url]: https://codecov.io/github/stdlib-js/assert-is-float64matrix-like?branch=main
132
154
 
133
- [dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-float64matrix-like
155
+ <!--
156
+
157
+ [dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-float64matrix-like.svg
134
158
  [dependencies-url]: https://david-dm.org/stdlib-js/assert-is-float64matrix-like/main
135
159
 
160
+ -->
161
+
162
+ [umd]: https://github.com/umdjs/umd
163
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
164
+
165
+ [deno-url]: https://github.com/stdlib-js/assert-is-float64matrix-like/tree/deno
166
+ [umd-url]: https://github.com/stdlib-js/assert-is-float64matrix-like/tree/umd
167
+ [esm-url]: https://github.com/stdlib-js/assert-is-float64matrix-like/tree/esm
168
+
169
+ [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
170
+ [chat-url]: https://gitter.im/stdlib-js/stdlib/
171
+
136
172
  [stdlib]: https://github.com/stdlib-js/stdlib
137
173
 
138
174
  [stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
139
175
 
140
176
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-float64matrix-like/main/LICENSE
141
177
 
142
- [@stdlib/ndarray/ctor]: https://github.com/stdlib-js/ndarray-ctor
178
+ [@stdlib/ndarray/ctor]: https://www.npmjs.com/package/@stdlib/ndarray-ctor
179
+
180
+ <!-- <related-links> -->
181
+
182
+ [@stdlib/assert/is-float32matrix-like]: https://www.npmjs.com/package/@stdlib/assert-is-float32matrix-like
183
+
184
+ [@stdlib/assert/is-ndarray-like]: https://www.npmjs.com/package/@stdlib/assert-is-ndarray-like
185
+
186
+ [@stdlib/assert/is-matrix-like]: https://www.npmjs.com/package/@stdlib/assert-is-matrix-like
187
+
188
+ <!-- </related-links> -->
143
189
 
144
190
  </section>
145
191
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/assert-is-float64matrix-like",
3
- "version": "0.0.2",
3
+ "version": "0.0.6",
4
4
  "description": "Test if a value is a 2-dimensional 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://github.com/stdlib-js/stdlib",
31
+ "homepage": "https://stdlib.io",
32
32
  "repository": {
33
33
  "type": "git",
34
34
  "url": "git://github.com/stdlib-js/assert-is-float64matrix-like.git"
package/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- # CHANGELOG
2
-
3
- > Package changelog.
4
-
5
- See [GitHub Releases](https://github.com/stdlib-js/assert-is-float64matrix-like/releases) for the changelog.