Skip to content

Instantly share code, notes, and snippets.

View herberthamaral's full-sized avatar

Herberth Amaral herberthamaral

View GitHub Profile
@rmurphey
rmurphey / javascript-dojo.snippets
Created January 18, 2011 16:10
Dojo Snipmate Snippets
# array utils
snippet dfe
dojo.forEach(${1:array}, function(${2:item}) {
${3}
}${3:, this});
snippet dmap
dojo.map(${1:array}, function(${2:item}) {
${4}
}${3:, this});