diff --git a/.github/workflows/npm_downloads.yml b/.github/workflows/npm_downloads.yml index ae196130..a0d5aedb 100644 --- a/.github/workflows/npm_downloads.yml +++ b/.github/workflows/npm_downloads.yml @@ -86,8 +86,8 @@ jobs: # Upload the download data: - name: 'Upload data' - # Pin action to full length commit SHA corresponding to v3.1.3 - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 + # Pin action to full length commit SHA + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: # Define a name for the uploaded artifact (ensuring a unique name for each job): name: npm_downloads diff --git a/.github/workflows/test_bundles.yml b/.github/workflows/test_bundles.yml index 0c4e0610..5c9dc95a 100644 --- a/.github/workflows/test_bundles.yml +++ b/.github/workflows/test_bundles.yml @@ -168,8 +168,8 @@ jobs: # Install Deno: - name: 'Install Deno' - # Pin action to full length commit SHA corresponding to v1.1.2 - uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 + # Pin action to full length commit SHA + uses: denoland/setup-deno@041b854f97b325bd60e53e9dc2de9cb9f9ac0cba # v1.1.4 with: deno-version: vx.x.x diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 726c1ec4..a0849169 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2,6 +2,7 @@ # # Contributors listed in alphabetical order. +Aditya Sapra <110766802+adityacodes30@users.noreply.github.com> Ali Salesi Amit Jimiwal Athan Reines @@ -13,6 +14,7 @@ Daniel Killenberger Dominik Moritz Dorrin Sotoudeh Frank Kovacs +GUNJ JOSHI Harshita Kalani James Gelok Jaysukh Makvana @@ -21,6 +23,7 @@ Joey Reed Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com> Joris Labie Justin Dennison +Karthik Prakash <116057817+skoriop@users.noreply.github.com> Marcus Fantham Matt Cochrane Milan Raj @@ -36,6 +39,7 @@ Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Ryan Seal Seyyed Parsa Neshaei Shraddheya Shendre +Spandan Barve <114365550+marsian83@users.noreply.github.com> Stephannie Jiménez Gacha Yernar Yergaziyev orimiles5 <97595296+orimiles5@users.noreply.github.com> diff --git a/async/if-then/docs/types/index.d.ts b/async/if-then/docs/types/index.d.ts index 395a4ffb..a02fa739 100644 --- a/async/if-then/docs/types/index.d.ts +++ b/async/if-then/docs/types/index.d.ts @@ -24,7 +24,7 @@ * @param error - encountered error or null * @param args - results */ -type Callback = ( error: Error | null, ...args: Array ) => void; +type Callback = ( error: Error | null, ...args: Array ) => void; /** * Predicate callback function. @@ -66,7 +66,7 @@ type Predicate = ( clbk: PredicateCallback ) => void; * * @param clbk - callback to invoke upon function completion */ -type ResultFunction = ( clbk: Callback ) => void; +type ResultFunction = ( clbk: Callback ) => void; /** * If a predicate function returns a truthy value, invokes `x`; otherwise, invokes `y`. @@ -108,7 +108,7 @@ type ResultFunction = ( clbk: Callback ) => void; * } * ifthenAsync( predicate, x, y, done ); */ -declare function ifthenAsync( predicate: Predicate, x: ResultFunction, y: ResultFunction, done: Callback ): void; +declare function ifthenAsync( predicate: Predicate, x: ResultFunction, y: ResultFunction, done: Callback ): void; // EXPORTS //