Skip to content

Commit b504ace

Browse files
committed
Auto-generated commit
1 parent 86fde25 commit b504ace

File tree

10 files changed

+55
-6
lines changed

10 files changed

+55
-6
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-07-08)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`de93d8f`](https://github.com/stdlib-js/stdlib/commit/de93d8f17831ad02c68e33181fa9226f88e42d29) - **chore:** resolve lint errors and update examples _(by Athan Reines)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Athan Reines
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.2">
640

741
## 0.2.2 (2024-07-27)

CONTRIBUTORS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,14 @@ Ali Salesi <[email protected]>
2121
AlyAbdelmoneim <[email protected]>
2222
Aman Bhansali <[email protected]>
2323
AmanBhadkariya <[email protected]>
24+
Amisha Chhajed <[email protected]>
2425
Amit Jimiwal <[email protected]>
26+
Annamalai Prabu <[email protected]>
2527
Anshu Kumar <[email protected]>
2628
Anshu Kumar <[email protected]>
2729
Anudeep Sanapala <[email protected]>
30+
Arihant Pal <[email protected]>
31+
Aryan Bhirud <[email protected]>
2832
Athan Reines <[email protected]>
2933
3034
Bhavishy Agrawal <[email protected]>
@@ -34,10 +38,12 @@ Bryan Elee <[email protected]>
3438
Chinmay Joshi <[email protected]>
3539
Christopher Dambamuromo <[email protected]>
3640
41+
Daniel Hernandez Gomez <[email protected]>
3742
Daniel Killenberger <[email protected]>
3843
Daniel Yu <[email protected]>
3944
Debashis Maharana <[email protected]>
4045
Deep Trivedi <[email protected]>
46+
Deepak Singh <[email protected]>
4147
Desh Deepak Kant <[email protected]>
4248
4349
Dhanyabad behera <[email protected]>
@@ -53,11 +59,13 @@ Frank Kovacs <[email protected]>
5359
GK Bishnoi <[email protected]>
5460
GURU PRASAD SHARMA <[email protected]>
5561
62+
Gautam Kaushik <[email protected]>
5663
Gautam sharma <[email protected]>
5764
Girish Garg <[email protected]>
5865
Golden Kumar <[email protected]>
5966
Gunj Joshi <[email protected]>
6067
Gururaj Gurram <[email protected]>
68+
Harishchandra Reddy <[email protected]>
6169
Haroon Rasheed <[email protected]>
6270
6371
@@ -90,6 +98,7 @@ Krishnam Agarwal <[email protected]>
9098
Krishnendu Das <[email protected]>
9199
Kshitij-Dale <[email protected]>
92100
Lalit Narayan Yadav <[email protected]>
101+
Lokesh Ranjan <[email protected]>
93102
Lovelin Dhoni J B <[email protected]>
94103
95104
Mahfuza Humayra Mohona <[email protected]>
@@ -118,6 +127,7 @@ Ognjen Jevremović <[email protected]>
118127
Oneday12323 <[email protected]>
119128
Ori Miles <[email protected]>
120129
Philipp Burckhardt <[email protected]>
130+
Pierre Forstmann <[email protected]>
121131
Prajjwal Bajpai <[email protected]>
122132
Prajwal Kulkarni <[email protected]>
123133
Pranav Goswami <[email protected]>
@@ -189,11 +199,13 @@ Yaswanth Kosuru <[email protected]>
189199
Yernar Yergaziyev <[email protected]>
190200
Yugal Kaushik <[email protected]>
191201
Yuvi Mittal <[email protected]>
202+
deepak427 <[email protected]>
192203
devshree-bhati <[email protected]>
193204
194205
ekambains <[email protected]>
195206
fadiothman22 <[email protected]>
196207
iraandrushko <[email protected]>
208+
197209
lohithganni <[email protected]>
198210
olenkabilonizhka <[email protected]>
199211
pranav-1720 <[email protected]>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ bool = isUint8ClampedArray( new Float32Array( 10 ) );
126126
bool = isUint8ClampedArray( new Float64Array( 10 ) );
127127
// returns false
128128

129-
bool = isUint8ClampedArray( new Array( 10 ) );
129+
bool = isUint8ClampedArray( [] );
130130
// returns false
131131

132132
bool = isUint8ClampedArray( {} );

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/types/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
* @returns boolean indicating whether value is a Uint8ClampedArray
2626
*
2727
* @example
28+
* var Uint8ClampedArray = require( '@stdlib/array-uint8c' );
29+
*
2830
* var bool = isUint8ClampedArray( new Uint8ClampedArray( 10 ) );
2931
* // returns true
3032
*

examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ bool = isUint8ClampedArray( new Float64Array( 10 ) );
6565
console.log( bool );
6666
// => false
6767

68-
bool = isUint8ClampedArray( new Array( 10 ) );
68+
bool = isUint8ClampedArray( [] );
6969
console.log( bool );
7070
// => false
7171

lib/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* @module @stdlib/assert-is-uint8clampedarray
2525
*
2626
* @example
27+
* var Uint8ClampedArray = require( '@stdlib/array-uint8c' );
2728
* var isUint8ClampedArray = require( '@stdlib/assert-is-uint8clampedarray' );
2829
*
2930
* var bool = isUint8ClampedArray( new Uint8ClampedArray( 10 ) );

lib/main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ var hasUint8ClampedArray = ( typeof Uint8ClampedArray === 'function' ); // eslin
3737
* @returns {boolean} boolean indicating whether value is a Uint8ClampedArray
3838
*
3939
* @example
40+
* var Uint8ClampedArray = require( '@stdlib/array-uint8c' );
41+
*
4042
* var bool = isUint8ClampedArray( new Uint8ClampedArray( 10 ) );
4143
* // returns true
4244
*

test/test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ tape( 'the function returns `false` if not provided a Uint8ClampedArray', functi
6060
[],
6161
{},
6262
function noop() {},
63-
new Array( 10 ),
6463
new Float64Array( 10 ),
6564
new Float32Array( 10 ),
6665
new Uint32Array( 10 ),

0 commit comments

Comments
 (0)