alternate iife in old format

This commit is contained in:
bounceme 2016-07-25 00:34:57 -07:00 committed by GitHub
parent e14e270075
commit e19ccebe27

View File

@ -30,6 +30,11 @@ snippet (f
(function(${1}) {
${0}
}(${2}));
# Minify safe iife
snippet iife
;(function(${1}) {
${0}
}(${2}))
# self-defining function
snippet sdf
var ${1:function_name} = function (${2:argument}) {