Last active
August 29, 2015 14:07
-
-
Save CurtisL/03a15e2f5d240ca3b6d7 to your computer and use it in GitHub Desktop.
Sublime Snippet: An IIFE wrapper for strict JavaScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
;(function(document, window, $2 undefined){ | |
'use strict'; | |
$0 | |
})(document, window, $1); | |
]]></content> | |
<tabTrigger>strict</tabTrigger> | |
<scope>source.js</scope> | |
<description>IIFE wrapper for strict JavaScript</description> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment