We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the functional world its a convention to receive the returning type last; E.g., methods that create new versions of the last received value, etc.
We have some methods that are defined using the above convention however for methods that return booleans (in some places).
We should keep method args order to the non-functional convention when we're returning booleans (as this is more straight forward).
instanceOf
hasOwnProperty
The text was updated successfully, but these errors were encountered:
issue-#80 - Refactored 'instanceOf' to take it's type arg second, upd…
49dbc4d
…ated some doc blocks, and removed some unrequired imports..
issue-#57,#80 - Refactored 'instanceOf' to take it's type arg second,…
ada81c2
… updated some doc blocks, and removed some unrequired imports..
issue-#57, #80 - Added 'isNullish', and 'notNullish', methods, deprec…
59f8604
…ated 'isset' method, and reversed params for 'hasOwnProperty' method.
429b0ad
issue-#57, #80 - Moved some 'is' methods around, updated docs, and re…
706c39e
…placed use of '(\!)isset' with 'notNullish', and 'isNullish', respectively.
issue-#57, #80 - Moved some 'is' methods around, updated docs, rename…
33d1950
…d 'isInstanceOf' to 'instanceOfSome', and replaced use of '(\!)isset' with 'notNullish', and 'isNullish', respectively.
Successfully merging a pull request may close this issue.
In the functional world its a convention to receive the returning type last; E.g., methods that create new versions of the last received value, etc.
We have some methods that are defined using the above convention however for methods that return booleans (in some places).
We should keep method args order to the non-functional convention when we're returning booleans (as this is more straight forward).
Acceptance Criteria
instanceOf
hasOwnProperty
The text was updated successfully, but these errors were encountered: