@stdlib/assert-is-same-complex64array 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.
Files changed (2) hide show
  1. package/README.md +24 -2
  2. package/package.json +6 -24
package/README.md CHANGED
@@ -117,6 +117,15 @@ out = isSameComplex64Array( 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-complex64array`][@stdlib/assert/is-complex64array]</span><span class="delimiter">: </span><span class="description">test if a value is a Complex64Array.</span>
125
+ - <span class="package-name">[`@stdlib/assert-is-same-complex128array`][@stdlib/assert/is-same-complex128array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Complex128Arrays and have the same values.</span>
126
+ - <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>
127
+ - <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>
128
+
120
129
  </section>
121
130
 
122
131
  <!-- /.related -->
@@ -160,8 +169,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
160
169
  [npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-same-complex64array.svg
161
170
  [npm-url]: https://npmjs.org/package/@stdlib/assert-is-same-complex64array
162
171
 
163
- [test-image]: https://github.com/stdlib-js/assert-is-same-complex64array/actions/workflows/test.yml/badge.svg?branch=v0.1.0
164
- [test-url]: https://github.com/stdlib-js/assert-is-same-complex64array/actions/workflows/test.yml?query=branch:v0.1.0
172
+ [test-image]: https://github.com/stdlib-js/assert-is-same-complex64array/actions/workflows/test.yml/badge.svg?branch=v0.2.1
173
+ [test-url]: https://github.com/stdlib-js/assert-is-same-complex64array/actions/workflows/test.yml?query=branch:v0.2.1
165
174
 
166
175
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-same-complex64array/main.svg
167
176
  [coverage-url]: https://codecov.io/github/stdlib-js/assert-is-same-complex64array?branch=main
@@ -184,8 +193,11 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
184
193
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
185
194
 
186
195
  [deno-url]: https://github.com/stdlib-js/assert-is-same-complex64array/tree/deno
196
+ [deno-readme]: https://github.com/stdlib-js/assert-is-same-complex64array/blob/deno/README.md
187
197
  [umd-url]: https://github.com/stdlib-js/assert-is-same-complex64array/tree/umd
198
+ [umd-readme]: https://github.com/stdlib-js/assert-is-same-complex64array/blob/umd/README.md
188
199
  [esm-url]: https://github.com/stdlib-js/assert-is-same-complex64array/tree/esm
200
+ [esm-readme]: https://github.com/stdlib-js/assert-is-same-complex64array/blob/esm/README.md
189
201
  [branches-url]: https://github.com/stdlib-js/assert-is-same-complex64array/blob/main/branches.md
190
202
 
191
203
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-same-complex64array/main/LICENSE
@@ -194,6 +206,16 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
194
206
 
195
207
  [@stdlib/assert/is-same-value]: https://www.npmjs.com/package/@stdlib/assert-is-same-value
196
208
 
209
+ <!-- <related-links> -->
210
+
211
+ [@stdlib/assert/is-complex64array]: https://www.npmjs.com/package/@stdlib/assert-is-complex64array
212
+
213
+ [@stdlib/assert/is-same-complex128array]: https://www.npmjs.com/package/@stdlib/assert-is-same-complex128array
214
+
215
+ [@stdlib/assert/is-same-float32array]: https://www.npmjs.com/package/@stdlib/assert-is-same-float32array
216
+
217
+ <!-- </related-links> -->
218
+
197
219
  </section>
198
220
 
199
221
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/assert-is-same-complex64array",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Test if two arguments are both Complex64Arrays 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
- "test": "./test"
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": "github:stdlib-js/array-base-assert-has-same-values#main",
41
- "@stdlib/assert-is-complex64array": "^0.1.0"
42
- },
43
- "devDependencies": {
44
- "@stdlib/array-base-zero-to": "^0.1.0",
45
- "@stdlib/array-complex64": "^0.1.0",
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-complex64array": "^0.2.1"
54
35
  },
36
+ "devDependencies": {},
55
37
  "engines": {
56
38
  "node": ">=0.10.0",
57
39
  "npm": ">2.7.0"