Skip to content

Commit

Permalink
Remove isArguments method [major]
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Aug 9, 2020
1 parent e506025 commit 4057c22
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 46 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ NB [core-util-is](https://www.npmjs.com/package/core-util-is)'s `isBuffer` is no

#### Other

* `isArguments` - `true` if is an arguments object
* `isType( type, input )` - `true` if `typeof input === type`

## Versioning
Expand Down
4 changes: 0 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,6 @@ export function isType(type, arg) {
return getType(arg) === type;
}

export function isArguments(arg) {
return isTypeByToString('Arguments', arg);
}

/*
* Helpers
*/
Expand Down
41 changes: 0 additions & 41 deletions test/other.test.js

This file was deleted.

0 comments on commit 4057c22

Please sign in to comment.