From 6f9cfdf6cf74d52d28fa719c8d4df0d3d1e91f10 Mon Sep 17 00:00:00 2001 From: Federico Brigante Date: Tue, 10 Apr 2018 00:24:15 +0700 Subject: [PATCH] chore(README): Drop reference to babel for async/await (#50) --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 48e6ba5..2313407 100644 --- a/README.md +++ b/README.md @@ -104,9 +104,8 @@ The major differences are: * Rather than nesting callbacks when a sequence of operations depend on each other, Promise chaining is generally used instead. -* For users of an ES7 transpiler, such as Babel, the resulting Promises are - generally used with `async` and `await`, rather than dealt with - directly. +* The resulting Promises can be also used with `async` and `await`, rather + than dealt with directly. ## Examples