We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01ac487 commit 2c7fc8aCopy full SHA for 2c7fc8a
crates/oxc_syntax/src/es_target.rs
@@ -27,7 +27,7 @@ impl FromStr for ESTarget {
27
28
fn from_str(s: &str) -> Result<Self, Self::Err> {
29
match s.cow_to_ascii_lowercase().as_ref() {
30
- "es5" => Err(String::from("We don't provide ES5 support yet.")),
+ "es5" => Err(String::from("ES5 is not yet supported.")),
31
"es6" | "es2015" => Ok(Self::ES2015),
32
"es2016" => Ok(Self::ES2016),
33
"es2017" => Ok(Self::ES2017),
0 commit comments