Last Updated: February 25, 2016
·
618
· p3drosola

Javascript self-executing function Sublime Text snippet

<snippet>
  <description>A Javascript self-executing function</description>
  <content><![CDATA[
(function () {
    ${1}
}());
]]></content>

  <tabTrigger>sef</tabTrigger>

  <scope>source.js</scope>
</snippet>