Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Nov 18, 2024
1 parent 399b001 commit 5096dd8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/utils/type-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ export const isFunction = function (f: any): f is (...args: any[]) => any {
}

export const isNativeFunction = function (f: any): f is (...args: any[]) => any {
// eslint-disable-next-line no-console
console.log(f.toString())
return isFunction(f) && f.toString().indexOf('[native code]') !== -1
}

Expand Down

0 comments on commit 5096dd8

Please sign in to comment.