Skip to content

Instantly share code, notes, and snippets.

@alfonsogarciacaro
Created March 21, 2016 20:42
Show Gist options
  • Save alfonsogarciacaro/5b998abd430434482099 to your computer and use it in GitHub Desktop.
Save alfonsogarciacaro/5b998abd430434482099 to your computer and use it in GitHub Desktop.
Wrap Fable modules to expose default member in CommonJS
var fableModule = require("./fable-module.js");
for (var key in fableModule.default) {
exports[key] = fableModule.default[key];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment