David Sherret 2025-04-25 10:09:31 -04:00 committed by GitHub
parent 6f4472c5dc
commit 1c6a2445c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 2770 additions and 937 deletions

View file

@ -101,7 +101,7 @@ declare global {
/**
* Performs the specified action for each element in the iterator.
* @param callbackfn A function that accepts up to two arguments. forEach calls the callbackfn function one time for each element in the iterator.
* @param callbackfn A function that accepts up to two arguments. forEach calls the callbackfn function one time for each element in the iterator.
*/
forEach(callbackfn: (value: T, index: number) => void): void;