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
Set.prototype.toggle()
Set sorely lacks a toggle method:
Set
toggle
Set.prototype.toggle = function (value, toggle = this.has(value)) { return toggle ? this.delete(value) : this.size < this.add(value).size }
The text was updated successfully, but these errors were encountered:
I need this method too.
Sorry, something went wrong.
No branches or pull requests
Set
sorely lacks atoggle
method:The text was updated successfully, but these errors were encountered: