Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,16 @@ Below is a list of all available snippets and the triggers of each one. The **
| `fin→` | for ... in loop `for(let item in object) {}` |
| `anfn→` | creates an anonymous function `(params) => {}` |
| `nfn→` | creates a named function `const add = (params) => {}` |
| `dob→` | desctucting object syntax `const {rename} = fs` |
| `dar→` | desctucting array syntax `const [first, second] = [1,2]` |
| `dob→` | destructing object syntax `const {rename} = fs` |
| `dar→` | destructing array syntax `const [first, second] = [1,2]` |
| `sti→` | set interval helper method `setInterval(() => {});` |
| `sto→` | set timeout helper method `setTimeout(() => {});` |
| `prom→` | creates a new Promise `return new Promise((resolve, reject) => {});`|

### Console methods
| Trigger | Content |
| -------: | ------- |
| `cas→` | console allert method `console.assert(expression, object)`|
| `cas→` | console alert method `console.assert(expression, object)`|
| `ccl→` | console clear `console.clear()` |
| `cco→` | console count `console.count(label)` |
| `cdi→` | console dir `console.dir` |
Expand Down