@stdlib/array-uint8c 0.1.1 → 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 +1 -1
- package/README.md +7 -4
- package/SECURITY.md +5 -0
- package/package.json +9 -8
- package/CITATION.cff +0 -30
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -746,7 +746,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
|
|
|
746
746
|
```javascript
|
|
747
747
|
var arr = new Uint8ClampedArray( [ 1, 2, 3 ] );
|
|
748
748
|
|
|
749
|
-
bool = arr.includes( 1, -2 );
|
|
749
|
+
var bool = arr.includes( 1, -2 );
|
|
750
750
|
// returns false
|
|
751
751
|
```
|
|
752
752
|
|
|
@@ -1489,7 +1489,7 @@ See [LICENSE][stdlib-license].
|
|
|
1489
1489
|
|
|
1490
1490
|
## Copyright
|
|
1491
1491
|
|
|
1492
|
-
Copyright © 2016-
|
|
1492
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
1493
1493
|
|
|
1494
1494
|
</section>
|
|
1495
1495
|
|
|
@@ -1502,8 +1502,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
1502
1502
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-uint8c.svg
|
|
1503
1503
|
[npm-url]: https://npmjs.org/package/@stdlib/array-uint8c
|
|
1504
1504
|
|
|
1505
|
-
[test-image]: https://github.com/stdlib-js/array-uint8c/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
1506
|
-
[test-url]: https://github.com/stdlib-js/array-uint8c/actions/workflows/test.yml?query=branch:v0.
|
|
1505
|
+
[test-image]: https://github.com/stdlib-js/array-uint8c/actions/workflows/test.yml/badge.svg?branch=v0.2.0
|
|
1506
|
+
[test-url]: https://github.com/stdlib-js/array-uint8c/actions/workflows/test.yml?query=branch:v0.2.0
|
|
1507
1507
|
|
|
1508
1508
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-uint8c/main.svg
|
|
1509
1509
|
[coverage-url]: https://codecov.io/github/stdlib-js/array-uint8c?branch=main
|
|
@@ -1526,8 +1526,11 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
1526
1526
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
1527
1527
|
|
|
1528
1528
|
[deno-url]: https://github.com/stdlib-js/array-uint8c/tree/deno
|
|
1529
|
+
[deno-readme]: https://github.com/stdlib-js/array-uint8c/blob/deno/README.md
|
|
1529
1530
|
[umd-url]: https://github.com/stdlib-js/array-uint8c/tree/umd
|
|
1531
|
+
[umd-readme]: https://github.com/stdlib-js/array-uint8c/blob/umd/README.md
|
|
1530
1532
|
[esm-url]: https://github.com/stdlib-js/array-uint8c/tree/esm
|
|
1533
|
+
[esm-readme]: https://github.com/stdlib-js/array-uint8c/blob/esm/README.md
|
|
1531
1534
|
[branches-url]: https://github.com/stdlib-js/array-uint8c/blob/main/branches.md
|
|
1532
1535
|
|
|
1533
1536
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/array-uint8c/main/LICENSE
|
package/SECURITY.md
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/array-uint8c",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Uint8ClampedArray.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -37,25 +37,26 @@
|
|
|
37
37
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@stdlib/assert-has-uint8clampedarray-support": "^0.
|
|
40
|
+
"@stdlib/assert-has-uint8clampedarray-support": "^0.2.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@stdlib/assert-has-property": "^0.
|
|
44
|
-
"@stdlib/assert-is-arraybuffer": "^0.
|
|
43
|
+
"@stdlib/assert-has-property": "^0.2.0",
|
|
44
|
+
"@stdlib/assert-is-arraybuffer": "^0.2.0",
|
|
45
45
|
"@stdlib/assert-is-boolean": "^0.1.1",
|
|
46
46
|
"@stdlib/assert-is-function": "^0.1.1",
|
|
47
47
|
"@stdlib/assert-is-nonnegative-integer": "^0.1.0",
|
|
48
|
-
"@stdlib/assert-is-uint8clampedarray": "^0.
|
|
49
|
-
"@stdlib/bench": "^0.1.0",
|
|
48
|
+
"@stdlib/assert-is-uint8clampedarray": "^0.2.0",
|
|
50
49
|
"@stdlib/math-base-special-pow": "^0.1.0",
|
|
51
50
|
"@stdlib/math-base-special-round": "^0.1.1",
|
|
52
51
|
"@stdlib/random-base-randi": "^0.1.0",
|
|
53
52
|
"@stdlib/random-base-randu": "^0.1.0",
|
|
54
|
-
"@stdlib/symbol-iterator": "^0.
|
|
53
|
+
"@stdlib/symbol-iterator": "^0.2.0",
|
|
55
54
|
"proxyquire": "^2.0.0",
|
|
56
55
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
57
56
|
"istanbul": "^0.4.1",
|
|
58
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
57
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
58
|
+
"@stdlib/bench-harness": "^0.1.2",
|
|
59
|
+
"@stdlib/bench": "^0.3.1"
|
|
59
60
|
},
|
|
60
61
|
"engines": {
|
|
61
62
|
"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
|