Add useful javascript snippets

This commit is contained in:
Gilad Peleg 2014-05-07 10:19:01 +03:00
parent 9376b6ea35
commit d0d1e59ad0

View File

@ -79,6 +79,14 @@ setTimeout(function() {
}${2:.bind(${3:this})}, ${1:10});
endsnippet
snippet fi "for prop in obj using hasOwnProperty"
for (${1:prop} in ${2:obj}){
if ($2.hasOwnProperty($1)) {
${0:// body...}
}
}
endsnippet
# Snippets for Console Debug Output
snippet ca "console.assert" b
@ -121,6 +129,10 @@ snippet cl "console.log" b
console.log(${1:"${2:value}"});
endsnippet
snippet cd "console.debug" b
console.debug(${1:"${2:value}"});
endsnippet
snippet cprof "console.profile" b
console.profile("${1:label}");
${VISUAL}$0