Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nix6839 committed May 10, 2024
1 parent e9795a1 commit 2f35b45
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/utils/validateTypes.js
Expand Up @@ -7,15 +7,6 @@ export function isBoolean(value) {
return typeof value === "boolean" || value instanceof Boolean;
}

/**
* Checks if the value is a number or a Number object.
* @param {unknown} value
* @returns {value is number}
*/
function isNumber(value) {
return typeof value === "number" || value instanceof Number;
}

/**
* Checks if the value is a regular expression.
* @param {unknown} value
Expand Down

0 comments on commit 2f35b45

Please sign in to comment.