File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ Below is a list of all available snippets and the triggers of each one. The **
5050| Trigger | Content |
5151| -------: | ------- |
5252| ` fre→ ` | forEach loop in ES6 syntax ` array.forEach(currentItem => {}) ` |
53- | ` fof→ ` | for ... of loop ` for(let item of object) {} ` |
54- | ` fin→ ` | for ... in loop ` for(let item in object) {} ` |
53+ | ` fof→ ` | for ... of loop ` for(const item of object) {} ` |
54+ | ` fin→ ` | for ... in loop ` for(const item in object) {} ` |
5555| ` anfn→ ` | creates an anonymous function ` (params) => {} ` |
5656| ` nfn→ ` | creates a named function ` const add = (params) => {} ` |
5757| ` dob→ ` | destructing object syntax ` const {rename} = fs ` |
Original file line number Diff line number Diff line change 11{
22 "name" : " JavaScriptSnippets" ,
33 "description" : " Code snippets for JavaScript in ES6 syntax" ,
4- "version" : " 1.4.1 " ,
4+ "version" : " 1.5.0 " ,
55 "displayName" : " JavaScript (ES6) code snippets" ,
66 "publisher" : " xabikos" ,
77 "icon" : " images/javascript.png" ,
You can’t perform that action at this time.
0 commit comments