Skip to content

Commit

Permalink
fixes invalid use of arguments in strict mode error (#484)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaruno committed Oct 18, 2023
1 parent 78e5388 commit b48a100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fake-timers-src.js
Expand Up @@ -28,14 +28,14 @@ if (typeof require === "function" && typeof module === "object") {
/**
* @callback NextTick
* @param {VoidVarArgsFunc} callback - the callback to run
* @param {...*} arguments - optional arguments to call the callback with
* @param {...*} args - optional arguments to call the callback with
* @returns {void}
*/

/**
* @callback SetImmediate
* @param {VoidVarArgsFunc} callback - the callback to run
* @param {...*} arguments - optional arguments to call the callback with
* @param {...*} args - optional arguments to call the callback with
* @returns {NodeImmediate}
*/

Expand Down

0 comments on commit b48a100

Please sign in to comment.