Created
August 20, 2017 11:37
-
-
Save anaibol/8cd7290ea5db8e2489aed59c35853303 to your computer and use it in GitHub Desktop.
Minimal Array.find polyfill
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!Array.prototype.find) { | |
Array.prototype.find = function (predicate) { | |
return this.filter(predicate)[0] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment