Last active
August 29, 2015 14:02
-
-
Save jkrems/df0add317718dfbce51a to your computer and use it in GitHub Desktop.
How to write ES6 modules
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
export function each() {} | |
export function map() {} | |
export function reduce() {} | |
export function isEmpty() {} | |
export function extend() {} | |
export default function _() {} | |
extend(_, {each, map, reduce, isEmpty, extend, _, default: _}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cases handled: