Skip to content

Instantly share code, notes, and snippets.

@azder
Forked from spion/angular-inj-array.js
Last active December 16, 2015 15:09
Show Gist options
  • Save azder/5453830 to your computer and use it in GitHub Desktop.
Save azder/5453830 to your computer and use it in GitHub Desktop.
require([
// the blah stuff
'blah', 'stuff', 'meh',
// the things
'thingy', 'one',
// quanTITIES
'another', 'something', 'otherthing',
// the even more extra stuff
'yetanother', 'morestuff',
],
function(
// the blah stuff
blah, stuff, meh,
// the things
thingy, one,
// quanTITIES
another, something, otherthing,
// the even more extra stuff
yetanother, morestuff
) {
//...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment