Merge pull request #763 from bounceme/patch-1

alternate iife in old format
This commit is contained in:
Louis Pilfold 2016-07-25 11:26:44 +01:00 committed by GitHub
commit 8b054b0957

View File

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