Last active
March 15, 2017 12:13
-
-
Save konstantinzolotarev/55430c7f240c3d4de3ab41a7fff3a2c5 to your computer and use it in GitHub Desktop.
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 us | |
'use strict' | |
endsnippet | |
snippet cl | |
console.log(${1}) | |
endsnippet | |
snippet ccl | |
console.log('==============================') | |
console.log(${1}) | |
console.log('==============================') | |
endsnippet | |
snippet tni | |
throw new Error('Not implemented yet')$1 | |
endsnippet | |
snippet pni | |
return Promise.reject('Not implemented yet')$1 | |
endsnippet | |
snippet af "small arrow function" i | |
($1) => {$0} | |
endsnippet | |
snippet aff "arrow function" i | |
(${1}) => { | |
$0 | |
} | |
endsnippet | |
snippet fn "function" i | |
function (${1}) {$0} | |
endsnippet | |
snippet err "new Error" i | |
new Error(${1:''}) | |
endsnippet | |
snippet todo | |
// TODO: $1 | |
endsnippet | |
snippet esld | |
// eslint-disable-line | |
endsnippet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment