Last active
January 4, 2018 13:18
-
-
Save wiyoe/7feac0e2a81fdfb0d16ef2bcf1deb5b5 to your computer and use it in GitHub Desktop.
Lodash custom function (check value equality).
This file contains hidden or 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
| _.mixin({ // Lodash add custom function | |
| 'isSame' : function(x, y) { | |
| return x == y; | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment