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 dde0cb8 commit 186686eCopy full SHA for 186686e
README.md
@@ -216,6 +216,12 @@ ${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
216
${1:methodName}.call(${2:context}, ${3:arguments})
217
```
218
219
+### [apply] function apply
220
+
221
+```javascript
222
+${1:methodName}.apply(${2:context}, [${3:arguments}])
223
+```
224
225
## Timer
226
227
### [si] setInterval
function-apply.sublime-snippet
@@ -0,0 +1,8 @@
1
+<snippet>
2
+ <content><![CDATA[
3
4
+]]></content>
5
+ <tabTrigger>apply</tabTrigger>
6
+ <scope>source.js</scope>
7
+ <description>method.apply()</description>
8
+</snippet>
0 commit comments