From b35fe1a0345a4d56a54a804af703ddfb8d951158 Mon Sep 17 00:00:00 2001 From: Dmitry Rumyantsev Date: Fri, 28 Sep 2018 22:59:18 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 696f1f9..cc2afad 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ promback Wraps a promise-returning/callback-calling function and returns another promise-returning one. -Especially useful for api or library writers, where an async (i.e. callback-calling or promise-returning) function is expected, to wrap it and turn into a promise-returning one. This simplifies implimenting the api and lets the users of the api to either use a callback (passed by promback along with the api-dependend params) or return a promise to their liking and convenience and, simultaneously, on the api side lets you to only work with promises or `async` functions. +Especially useful for api or library writers, where an async (i.e. callback-calling or promise-returning) function is expected, to wrap it and turn into a promise-returning one. This simplifies implimenting the api and lets the users of the api to either use a callback (passed by promback along with the api-dependend params) or return a promise to their liking and convenience and, simultaneously, on the api side lets you to only work with promises. Install =======