Skip to content

Instantly share code, notes, and snippets.

@meandavejustice
Created January 16, 2014 20:39
Show Gist options
  • Save meandavejustice/8463000 to your computer and use it in GitHub Desktop.
Save meandavejustice/8463000 to your computer and use it in GitHub Desktop.
YAS Snippet for Require.js Modules
# -*- mode: snippet -*-
# name: amd
# --
define(function(require) {
/*
$0
*/
var $1 = $2({
$3
});
return $1;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment