From c0635bac4cd891cb612fb81655012e2579f4e2b1 Mon Sep 17 00:00:00 2001 From: Kai Cataldo <7041728+kaicataldo@users.noreply.github.com> Date: Sun, 18 Aug 2019 18:51:19 -0400 Subject: [PATCH] Docs: update readme to mention ES2020 (#422) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e496f66..a03d1c3e 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ const ast = espree.parse(code, { tokens: false, // Set to 3, 5 (default), 6, 7, 8, 9, or 10 to specify the version of ECMAScript syntax you want to use. - // You can also set to 2015 (same as 6), 2016 (same as 7), 2017 (same as 8), 2018 (same as 9), or 2019 (same as 10) to use the year-based naming. + // You can also set to 2015 (same as 6), 2016 (same as 7), 2017 (same as 8), 2018 (same as 9), 2019 (same as 10), or 2020 (same as 11) to use the year-based naming. ecmaVersion: 5, // specify which type of script you're parsing ("script" or "module")