Upgrade dictionary and snippets
* add new JavaScript snippets * update dictionary
This commit is contained in:
@@ -30,6 +30,14 @@ snippet iife
|
||||
(function () {
|
||||
${1}
|
||||
})();
|
||||
snippet interval
|
||||
setInterval(function () {
|
||||
${2}
|
||||
}, ${1});
|
||||
snippet timeout
|
||||
setTimeout(function () {
|
||||
${2}
|
||||
}, ${1});
|
||||
# log snippets
|
||||
snippet log
|
||||
console.log(${1});
|
||||
|
||||
Reference in New Issue
Block a user