Last active
December 28, 2015 16:08
-
-
Save joaocunha/7526353 to your computer and use it in GitHub Desktop.
Sublime Text Snippet - console.time()
This file contains 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[ | |
console.time(${1:'timer'}); | |
$SELECTION$0 | |
console.timeEnd(${2:'timer'}); | |
]]></content> | |
<tabTrigger>ctime</tabTrigger> | |
<scope>text.html,source.js</scope> | |
<description>console.time()</description> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment