Skip to content

Instantly share code, notes, and snippets.

@bryanforbes
Created August 13, 2015 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryanforbes/b2456ab3bdce2acbd332 to your computer and use it in GitHub Desktop.
Save bryanforbes/b2456ab3bdce2acbd332 to your computer and use it in GitHub Desktop.
define(function (require) {
var B = require('./B');
return function () {
B();
};
});
define(function (require) {
var A = require('./A');
return function () {
A();
};
});
define(function (require, exports) {
var D = require('./D');
exports.default = function () {
D.default();
};
});
define(function (require, exports) {
var C = require('./C');
exports.default = function () {
C.default();
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment