We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9814a6b commit 2a098b5Copy full SHA for 2a098b5
README.md
@@ -270,30 +270,14 @@ async (${1:arguments}) => {
270
271
#### `aiife⇥` async immediately-invoked function expression
272
273
+very useful when you don't have top level await(node 16 and lower)
274
+
275
```js
276
;(async (${1:arguments}) => {
277
${0}
278
})(${2})
279
```
280
-#### `fa⇥` function apply
-
281
-```js
282
-${1:fn}.apply(${2:this}, ${3:arguments})
283
-```
284
285
-#### `fc⇥` function call
286
287
288
-${1:fn}.call(${2:this}, ${3:arguments})
289
290
291
-#### `fb⇥` function bind
292
293
294
-${1:fn}.bind(${2:this}, ${3:arguments})
295
296
297
#### `af⇥` arrow function (ES6)
298
299
0 commit comments