@stdlib/array-base-flatten5d 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.
package/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2023 The Stdlib Authors.
1
+ Copyright (c) 2016-2024 The Stdlib Authors.
package/README.md CHANGED
@@ -207,7 +207,7 @@ See [LICENSE][stdlib-license].
207
207
 
208
208
  ## Copyright
209
209
 
210
- Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
210
+ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
211
211
 
212
212
  </section>
213
213
 
@@ -220,8 +220,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
220
220
  [npm-image]: http://img.shields.io/npm/v/@stdlib/array-base-flatten5d.svg
221
221
  [npm-url]: https://npmjs.org/package/@stdlib/array-base-flatten5d
222
222
 
223
- [test-image]: https://github.com/stdlib-js/array-base-flatten5d/actions/workflows/test.yml/badge.svg?branch=v0.1.0
224
- [test-url]: https://github.com/stdlib-js/array-base-flatten5d/actions/workflows/test.yml?query=branch:v0.1.0
223
+ [test-image]: https://github.com/stdlib-js/array-base-flatten5d/actions/workflows/test.yml/badge.svg?branch=v0.2.0
224
+ [test-url]: https://github.com/stdlib-js/array-base-flatten5d/actions/workflows/test.yml?query=branch:v0.2.0
225
225
 
226
226
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-base-flatten5d/main.svg
227
227
  [coverage-url]: https://codecov.io/github/stdlib-js/array-base-flatten5d?branch=main
@@ -244,8 +244,11 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
244
244
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
245
245
 
246
246
  [deno-url]: https://github.com/stdlib-js/array-base-flatten5d/tree/deno
247
+ [deno-readme]: https://github.com/stdlib-js/array-base-flatten5d/blob/deno/README.md
247
248
  [umd-url]: https://github.com/stdlib-js/array-base-flatten5d/tree/umd
249
+ [umd-readme]: https://github.com/stdlib-js/array-base-flatten5d/blob/umd/README.md
248
250
  [esm-url]: https://github.com/stdlib-js/array-base-flatten5d/tree/esm
251
+ [esm-readme]: https://github.com/stdlib-js/array-base-flatten5d/blob/esm/README.md
249
252
  [branches-url]: https://github.com/stdlib-js/array-base-flatten5d/blob/main/branches.md
250
253
 
251
254
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/array-base-flatten5d/main/LICENSE
package/SECURITY.md ADDED
@@ -0,0 +1,5 @@
1
+ # Security
2
+
3
+ > Policy for reporting security vulnerabilities.
4
+
5
+ See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).
@@ -69,7 +69,7 @@ interface Flatten5d {
69
69
  * @returns output array
70
70
  *
71
71
  * @example
72
- * var Float64Array = require( `@stdlib/array/float64` );
72
+ * var Float64Array = require( '@stdlib/array-float64' );
73
73
  *
74
74
  * var x = [ [ [ [ [ 1, 2 ] ] ] ], [ [ [ [ 3, 4 ] ] ] ] ];
75
75
  *
@@ -77,7 +77,7 @@ interface Flatten5d {
77
77
  * // returns <Float64Array>[ 1, 2, 3, 4 ]
78
78
  *
79
79
  * @example
80
- * var Float64Array = require( `@stdlib/array/float64` );
80
+ * var Float64Array = require( '@stdlib/array-float64' );
81
81
  *
82
82
  * var x = [ [ [ [ [ 1, 2 ] ] ] ], [ [ [ [ 3, 4 ] ] ] ] ];
83
83
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/array-base-flatten5d",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Flatten a five-dimensional nested array.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -37,20 +37,21 @@
37
37
  "url": "https://github.com/stdlib-js/stdlib/issues"
38
38
  },
39
39
  "dependencies": {
40
- "@stdlib/types": "^0.1.0",
41
- "@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.0"
40
+ "@stdlib/types": "^0.3.1",
41
+ "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@stdlib/array-base-filled": "^0.0.2",
44
+ "@stdlib/array-base-filled": "^0.1.0",
45
45
  "@stdlib/array-base-zero-to": "^0.1.0",
46
- "@stdlib/array-float64": "^0.1.0",
47
- "@stdlib/assert-has-own-property": "^0.1.0",
48
- "@stdlib/assert-is-array": "^0.1.0",
49
- "@stdlib/assert-is-float64array": "^0.1.0",
50
- "@stdlib/bench": "^0.1.0",
46
+ "@stdlib/array-float64": "^0.1.1",
47
+ "@stdlib/assert-has-own-property": "^0.1.1",
48
+ "@stdlib/assert-is-array": "^0.1.1",
49
+ "@stdlib/assert-is-float64array": "^0.1.1",
51
50
  "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
52
51
  "istanbul": "^0.4.1",
53
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
52
+ "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
53
+ "@stdlib/bench-harness": "^0.2.0",
54
+ "@stdlib/bench": "^0.3.1"
54
55
  },
55
56
  "engines": {
56
57
  "node": ">=0.10.0",
package/CITATION.cff DELETED
@@ -1,30 +0,0 @@
1
- cff-version: 1.2.0
2
- title: stdlib
3
- message: >-
4
- If you use this software, please cite it using the
5
- metadata from this file.
6
-
7
- type: software
8
-
9
- authors:
10
- - name: The Stdlib Authors
11
- url: https://github.com/stdlib-js/stdlib/graphs/contributors
12
-
13
- repository-code: https://github.com/stdlib-js/stdlib
14
- url: https://stdlib.io
15
-
16
- abstract: |
17
- Standard library for JavaScript and Node.js.
18
-
19
- keywords:
20
- - JavaScript
21
- - Node.js
22
- - TypeScript
23
- - standard library
24
- - scientific computing
25
- - numerical computing
26
- - statistical computing
27
-
28
- license: Apache-2.0 AND BSL-1.0
29
-
30
- date-released: 2016