22 lines
336 B
Plaintext
Raw Normal View History

== Why is this an issue?
include::../description.adoc[]
=== Noncompliant code example
2022-02-04 17:28:24 +01:00
[source,javascript]
----
str.split(/.*?x?/); // Noncompliant, this will behave just like "x?"
/^.*?$/.test(str); // Noncompliant, replace with ".*"
----
=== Compliant solution
2022-02-04 17:28:24 +01:00
[source,javascript]
----
str.split(/.*?x/);
/^.*$/.test(str);
----