Skip to content

Instantly share code, notes, and snippets.

@angus-c
Created December 27, 2012 20:11
Show Gist options
  • Select an option

  • Save angus-c/4391552 to your computer and use it in GitHub Desktop.

Select an option

Save angus-c/4391552 to your computer and use it in GitHub Desktop.
define(
[],
function () {
var utils = {
//object properties
};
return utils;
}
);
/////////////////
//using it here...
define(
[
'./utils'
],
function(utils) {
//...
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment