@stdlib/assert-is-same-float64array 0.1.0 → 0.2.0

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.
Files changed (2) hide show
  1. package/README.md +18 -2
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -117,6 +117,13 @@ out = isSameFloat64Array( x, y );
117
117
 
118
118
  <section class="related">
119
119
 
120
+ * * *
121
+
122
+ ## See Also
123
+
124
+ - <span class="package-name">[`@stdlib/assert-is-same-float32array`][@stdlib/assert/is-same-float32array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Float32Arrays and have the same values.</span>
125
+ - <span class="package-name">[`@stdlib/assert-is-same-value`][@stdlib/assert/is-same-value]</span><span class="delimiter">: </span><span class="description">test if two arguments are the same value.</span>
126
+
120
127
  </section>
121
128
 
122
129
  <!-- /.related -->
@@ -160,8 +167,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
160
167
  [npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-same-float64array.svg
161
168
  [npm-url]: https://npmjs.org/package/@stdlib/assert-is-same-float64array
162
169
 
163
- [test-image]: https://github.com/stdlib-js/assert-is-same-float64array/actions/workflows/test.yml/badge.svg?branch=v0.1.0
164
- [test-url]: https://github.com/stdlib-js/assert-is-same-float64array/actions/workflows/test.yml?query=branch:v0.1.0
170
+ [test-image]: https://github.com/stdlib-js/assert-is-same-float64array/actions/workflows/test.yml/badge.svg?branch=v0.2.0
171
+ [test-url]: https://github.com/stdlib-js/assert-is-same-float64array/actions/workflows/test.yml?query=branch:v0.2.0
165
172
 
166
173
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-same-float64array/main.svg
167
174
  [coverage-url]: https://codecov.io/github/stdlib-js/assert-is-same-float64array?branch=main
@@ -184,8 +191,11 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
184
191
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
185
192
 
186
193
  [deno-url]: https://github.com/stdlib-js/assert-is-same-float64array/tree/deno
194
+ [deno-readme]: https://github.com/stdlib-js/assert-is-same-float64array/blob/deno/README.md
187
195
  [umd-url]: https://github.com/stdlib-js/assert-is-same-float64array/tree/umd
196
+ [umd-readme]: https://github.com/stdlib-js/assert-is-same-float64array/blob/umd/README.md
188
197
  [esm-url]: https://github.com/stdlib-js/assert-is-same-float64array/tree/esm
198
+ [esm-readme]: https://github.com/stdlib-js/assert-is-same-float64array/blob/esm/README.md
189
199
  [branches-url]: https://github.com/stdlib-js/assert-is-same-float64array/blob/main/branches.md
190
200
 
191
201
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-same-float64array/main/LICENSE
@@ -194,6 +204,12 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
194
204
 
195
205
  [@stdlib/assert/is-same-value]: https://www.npmjs.com/package/@stdlib/assert-is-same-value
196
206
 
207
+ <!-- <related-links> -->
208
+
209
+ [@stdlib/assert/is-same-float32array]: https://www.npmjs.com/package/@stdlib/assert-is-same-float32array
210
+
211
+ <!-- </related-links> -->
212
+
197
213
  </section>
198
214
 
199
215
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/assert-is-same-float64array",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Test if two arguments are both Float64Arrays and have the same values.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -37,20 +37,20 @@
37
37
  "url": "https://github.com/stdlib-js/stdlib/issues"
38
38
  },
39
39
  "dependencies": {
40
- "@stdlib/array-base-assert-has-same-values": "github:stdlib-js/array-base-assert-has-same-values#main",
41
- "@stdlib/assert-is-float64array": "^0.1.1"
40
+ "@stdlib/array-base-assert-has-same-values": "^0.2.0",
41
+ "@stdlib/assert-is-float64array": "^0.2.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@stdlib/array-base-zero-to": "^0.1.0",
45
- "@stdlib/array-float64": "^0.1.1",
45
+ "@stdlib/array-float64": "^0.2.0",
46
46
  "@stdlib/array-typed": "^0.1.0",
47
- "@stdlib/assert-is-boolean": "^0.1.1",
48
- "@stdlib/math-base-special-pow": "^0.1.0",
47
+ "@stdlib/assert-is-boolean": "^0.2.0",
48
+ "@stdlib/math-base-special-pow": "^0.2.0",
49
49
  "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
50
50
  "istanbul": "^0.4.1",
51
51
  "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
52
- "@stdlib/bench-harness": "^0.1.2",
53
- "@stdlib/bench": "^0.2.1"
52
+ "@stdlib/bench-harness": "^0.2.0",
53
+ "@stdlib/bench": "^0.3.1"
54
54
  },
55
55
  "engines": {
56
56
  "node": ">=0.10.0",