Created
November 20, 2018 16:13
-
-
Save yuanliwei/72010a4d4b18e20eb4543ed4ca6a1034 to your computer and use it in GitHub Desktop.
Atom snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| '.source.js': | |
| 'filter': | |
| 'prefix': 'filter' | |
| 'body': """filter((item)=>{ | |
| return item$1 | |
| })""" | |
| 'map': | |
| 'prefix': 'map' | |
| 'body': """map((item)=>{ | |
| return item$1 | |
| })""" | |
| 'forEach': | |
| 'prefix': 'forEach' | |
| 'body': """forEach((item)=>{ | |
| item$1 | |
| })""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment