31 lines
579 B
Plaintext
Raw Normal View History

2021-01-08 16:20:41 +01:00
include::../description.adoc[]
== Exceptions
This function ignores Immediately Invoked Function Expressions (IIFE), which are functions that are created and invoked without ever being assigned a name.
2021-02-02 15:02:10 +01:00
2021-01-08 16:20:41 +01:00
----
(function () { // Ignored by this rule
function open() { // Classic function declaration; not ignored
// ...
}
function read() {
// ...
}
function readlines() {
// ...
}
})();
----
ifdef::env-github,rspecator-view[]
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]