Skip to content

Instantly share code, notes, and snippets.

@tbranyen
Created May 7, 2014 16:38
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 tbranyen/741d4aa63bedd63756df to your computer and use it in GitHub Desktop.
Save tbranyen/741d4aa63bedd63756df to your computer and use it in GitHub Desktop.
define(function(require, exports, module) {
"use strict";
var depA = require("./depA");
var depB = requie("../../../depB");
function DepC() {
}
module.exports = DepC;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment