Skip to content

Instantly share code, notes, and snippets.

View EduceHealth's full-sized avatar

Educe Health Ltd. EduceHealth

View GitHub Profile
@EduceHealth
EduceHealth / p.js
Last active August 29, 2015 14:02 — forked from robwormald/p.js
fluent p
//opt 1
SomeService.getStuff().then(function(stuff){
return SomeService.manipulateStuff(stuff);
}).then(function(manipulatedStuff){
//do stuff...
});
//opt 2
SomeService.getStuff().then(SomeService.manipulateStuff).then(function(manipulatedStuff){
//do stuff...