Skip to content

Instantly share code, notes, and snippets.

@phivk
Created May 28, 2017 10:35
Show Gist options
  • Save phivk/a6c39d28d10750a52130cf25f5419af7 to your computer and use it in GitHub Desktop.
Save phivk/a6c39d28d10750a52130cf25f5419af7 to your computer and use it in GitHub Desktop.
Javascript Array Map Sublime Text Snippet
<snippet>
<content><![CDATA[
map(function(${1:value}, ${2:index}, ${3:array}) {
return ${0}
});
]]></content>
<tabTrigger>map</tabTrigger>
<scope>source.js</scope>
<description>Array map</description>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment