Last active
May 14, 2016 14:40
-
-
Save addityasingh/af83cc5037590bd4ca7ad3072342dd83 to your computer and use it in GitHub Desktop.
Pure functions using ES2015 to create common utilities
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
| function forEach(arr, callback, start=0) { | |
| if (0 < start && start < arr.length) { | |
| callback(arr[start], start, arr); | |
| return forEach(arr, callback, start + 1); | |
| } | |
| } |
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
| function len([first, ...rest]) { | |
| if (!first) { | |
| return 0 | |
| } else { | |
| return 1 + len(rest); | |
| } | |
| } |
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
| function map([first, ...rest], f) { | |
| if (!first) { | |
| return []; | |
| } else { | |
| return [f(first), ...map(rest, f)]; | |
| } | |
| } |
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
| function range (start, end) { | |
| return Array.from({length: (end - start)}, (v, k) => k + start); | |
| } |
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
| function replaceString(pattern, replacement, str) { | |
| return str.split(pattern).join(replacement); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment