@stdlib/array-uint8c 0.0.4 → 0.0.8
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 +64 -4
- package/package.json +2 -2
- package/CHANGELOG.md +0 -5
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# Uint8ClampedArray
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> [Typed array][mdn-typed-array] constructor which returns a [typed array][mdn-typed-array] representing an array of 8-bit unsigned integers in the platform byte order clamped to 0-255.
|
|
26
26
|
|
|
@@ -1430,6 +1430,28 @@ console.log( arr );
|
|
|
1430
1430
|
|
|
1431
1431
|
<!-- /.references -->
|
|
1432
1432
|
|
|
1433
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
1434
|
+
|
|
1435
|
+
<section class="related">
|
|
1436
|
+
|
|
1437
|
+
* * *
|
|
1438
|
+
|
|
1439
|
+
## See Also
|
|
1440
|
+
|
|
1441
|
+
- <span class="package-name">[`@stdlib/array/buffer`][@stdlib/array/buffer]</span><span class="delimiter">: </span><span class="description">ArrayBuffer.</span>
|
|
1442
|
+
- <span class="package-name">[`@stdlib/array/float32`][@stdlib/array/float32]</span><span class="delimiter">: </span><span class="description">Float32Array.</span>
|
|
1443
|
+
- <span class="package-name">[`@stdlib/array/float64`][@stdlib/array/float64]</span><span class="delimiter">: </span><span class="description">Float64Array.</span>
|
|
1444
|
+
- <span class="package-name">[`@stdlib/array/int16`][@stdlib/array/int16]</span><span class="delimiter">: </span><span class="description">Int16Array.</span>
|
|
1445
|
+
- <span class="package-name">[`@stdlib/array/int32`][@stdlib/array/int32]</span><span class="delimiter">: </span><span class="description">Int32Array.</span>
|
|
1446
|
+
- <span class="package-name">[`@stdlib/array/int8`][@stdlib/array/int8]</span><span class="delimiter">: </span><span class="description">Int8Array.</span>
|
|
1447
|
+
- <span class="package-name">[`@stdlib/array/uint16`][@stdlib/array/uint16]</span><span class="delimiter">: </span><span class="description">Uint16Array.</span>
|
|
1448
|
+
- <span class="package-name">[`@stdlib/array/uint32`][@stdlib/array/uint32]</span><span class="delimiter">: </span><span class="description">Uint32Array.</span>
|
|
1449
|
+
- <span class="package-name">[`@stdlib/array/uint8`][@stdlib/array/uint8]</span><span class="delimiter">: </span><span class="description">Uint8Array.</span>
|
|
1450
|
+
|
|
1451
|
+
</section>
|
|
1452
|
+
|
|
1453
|
+
<!-- /.related -->
|
|
1454
|
+
|
|
1433
1455
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
1434
1456
|
|
|
1435
1457
|
|
|
@@ -1443,6 +1465,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
|
|
|
1443
1465
|
|
|
1444
1466
|
For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib].
|
|
1445
1467
|
|
|
1468
|
+
#### Community
|
|
1469
|
+
|
|
1470
|
+
[![Chat][chat-image]][chat-url]
|
|
1471
|
+
|
|
1446
1472
|
---
|
|
1447
1473
|
|
|
1448
1474
|
## License
|
|
@@ -1452,7 +1478,7 @@ See [LICENSE][stdlib-license].
|
|
|
1452
1478
|
|
|
1453
1479
|
## Copyright
|
|
1454
1480
|
|
|
1455
|
-
Copyright © 2016-
|
|
1481
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
1456
1482
|
|
|
1457
1483
|
</section>
|
|
1458
1484
|
|
|
@@ -1471,9 +1497,23 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
1471
1497
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-uint8c/main.svg
|
|
1472
1498
|
[coverage-url]: https://codecov.io/github/stdlib-js/array-uint8c?branch=main
|
|
1473
1499
|
|
|
1474
|
-
|
|
1500
|
+
<!--
|
|
1501
|
+
|
|
1502
|
+
[dependencies-image]: https://img.shields.io/david/stdlib-js/array-uint8c.svg
|
|
1475
1503
|
[dependencies-url]: https://david-dm.org/stdlib-js/array-uint8c/main
|
|
1476
1504
|
|
|
1505
|
+
-->
|
|
1506
|
+
|
|
1507
|
+
[umd]: https://github.com/umdjs/umd
|
|
1508
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
1509
|
+
|
|
1510
|
+
[deno-url]: https://github.com/stdlib-js/array-uint8c/tree/deno
|
|
1511
|
+
[umd-url]: https://github.com/stdlib-js/array-uint8c/tree/umd
|
|
1512
|
+
[esm-url]: https://github.com/stdlib-js/array-uint8c/tree/esm
|
|
1513
|
+
|
|
1514
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
1515
|
+
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
1516
|
+
|
|
1477
1517
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
1478
1518
|
|
|
1479
1519
|
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
@@ -1482,7 +1522,27 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
1482
1522
|
|
|
1483
1523
|
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
|
|
1484
1524
|
|
|
1485
|
-
|
|
1525
|
+
<!-- <related-links> -->
|
|
1526
|
+
|
|
1527
|
+
[@stdlib/array/buffer]: https://www.npmjs.com/package/@stdlib/array-buffer
|
|
1528
|
+
|
|
1529
|
+
[@stdlib/array/float32]: https://www.npmjs.com/package/@stdlib/array-float32
|
|
1530
|
+
|
|
1531
|
+
[@stdlib/array/float64]: https://www.npmjs.com/package/@stdlib/array-float64
|
|
1532
|
+
|
|
1533
|
+
[@stdlib/array/int16]: https://www.npmjs.com/package/@stdlib/array-int16
|
|
1534
|
+
|
|
1535
|
+
[@stdlib/array/int32]: https://www.npmjs.com/package/@stdlib/array-int32
|
|
1536
|
+
|
|
1537
|
+
[@stdlib/array/int8]: https://www.npmjs.com/package/@stdlib/array-int8
|
|
1538
|
+
|
|
1539
|
+
[@stdlib/array/uint16]: https://www.npmjs.com/package/@stdlib/array-uint16
|
|
1540
|
+
|
|
1541
|
+
[@stdlib/array/uint32]: https://www.npmjs.com/package/@stdlib/array-uint32
|
|
1542
|
+
|
|
1543
|
+
[@stdlib/array/uint8]: https://www.npmjs.com/package/@stdlib/array-uint8
|
|
1544
|
+
|
|
1545
|
+
<!-- </related-links> -->
|
|
1486
1546
|
|
|
1487
1547
|
</section>
|
|
1488
1548
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/array-uint8c",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Uint8ClampedArray.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"examples": "make examples",
|
|
29
29
|
"benchmark": "make benchmark"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://
|
|
31
|
+
"homepage": "https://stdlib.io",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git://github.com/stdlib-js/array-uint8c.git"
|