Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. {
  2. "console log": {
  3. "prefix": "cl",
  4. "body": [
  5. "console.log($1)"
  6. ],
  7. "description": ""
  8. },
  9.  
  10. "lambda": {
  11. "prefix": "lb",
  12. "body": [
  13. "(${1:args}) => {${2:body}}"
  14. ],
  15. "description": ""
  16. },
  17.  
  18. "function": {
  19. "prefix": "fn",
  20. "body": [
  21. "function ${1:name}(${2:args}) {",
  22. " ${3:body}",
  23. "}"
  24. ],
  25. "description": ""
  26. },
  27.  
  28. "if": {
  29. "prefix": "iff",
  30. "body": [
  31. "if (${1:condition}) {",
  32. " ${2:body}",
  33. "}"
  34. ],
  35. "description": ""
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement