Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nix6839 committed Mar 5, 2024
1 parent 03eb9fc commit f6b87c9
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 f6b87c9

Please sign in to comment.