@stdlib/assert-is-same-float64array 0.1.0 → 0.2.1
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 +18 -2
- package/package.json +6 -24
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 © 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
|
|
164
|
-
[test-url]: https://github.com/stdlib-js/assert-is-same-float64array/actions/workflows/test.yml?query=branch:v0.1
|
|
170
|
+
[test-image]: https://github.com/stdlib-js/assert-is-same-float64array/actions/workflows/test.yml/badge.svg?branch=v0.2.1
|
|
171
|
+
[test-url]: https://github.com/stdlib-js/assert-is-same-float64array/actions/workflows/test.yml?query=branch:v0.2.1
|
|
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 © 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 © 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
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Test if two arguments are both Float64Arrays and have the same values.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -15,19 +15,12 @@
|
|
|
15
15
|
],
|
|
16
16
|
"main": "./lib",
|
|
17
17
|
"directories": {
|
|
18
|
-
"benchmark": "./benchmark",
|
|
19
18
|
"doc": "./docs",
|
|
20
|
-
"example": "./examples",
|
|
21
19
|
"lib": "./lib",
|
|
22
|
-
"
|
|
20
|
+
"dist": "./dist"
|
|
23
21
|
},
|
|
24
22
|
"types": "./docs/types",
|
|
25
|
-
"scripts": {
|
|
26
|
-
"test": "make test",
|
|
27
|
-
"test-cov": "make test-cov",
|
|
28
|
-
"examples": "make examples",
|
|
29
|
-
"benchmark": "make benchmark"
|
|
30
|
-
},
|
|
23
|
+
"scripts": {},
|
|
31
24
|
"homepage": "https://stdlib.io",
|
|
32
25
|
"repository": {
|
|
33
26
|
"type": "git",
|
|
@@ -37,21 +30,10 @@
|
|
|
37
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
38
31
|
},
|
|
39
32
|
"dependencies": {
|
|
40
|
-
"@stdlib/array-base-assert-has-same-values": "
|
|
41
|
-
"@stdlib/assert-is-float64array": "^0.
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@stdlib/array-base-zero-to": "^0.1.0",
|
|
45
|
-
"@stdlib/array-float64": "^0.1.1",
|
|
46
|
-
"@stdlib/array-typed": "^0.1.0",
|
|
47
|
-
"@stdlib/assert-is-boolean": "^0.1.1",
|
|
48
|
-
"@stdlib/math-base-special-pow": "^0.1.0",
|
|
49
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
50
|
-
"istanbul": "^0.4.1",
|
|
51
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
52
|
-
"@stdlib/bench-harness": "^0.1.2",
|
|
53
|
-
"@stdlib/bench": "^0.2.1"
|
|
33
|
+
"@stdlib/array-base-assert-has-same-values": "^0.2.1",
|
|
34
|
+
"@stdlib/assert-is-float64array": "^0.2.1"
|
|
54
35
|
},
|
|
36
|
+
"devDependencies": {},
|
|
55
37
|
"engines": {
|
|
56
38
|
"node": ">=0.10.0",
|
|
57
39
|
"npm": ">2.7.0"
|