Skip to content

Instantly share code, notes, and snippets.

@R4CHI7
Created December 17, 2016 08:59
Show Gist options
  • Save R4CHI7/65679b8025c99a94b786ab691ece2560 to your computer and use it in GitHub Desktop.
Save R4CHI7/65679b8025c99a94b786ab691ece2560 to your computer and use it in GitHub Desktop.
Sublime text snippet to insert boilerplate code for a function that returns a promise in Nodejs
<snippet>
<content><![CDATA[
return new Promise(function(resolve, reject) {
${1:body}
});
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>promise</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.js</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment