mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 05:32:09 +03:00
6 lines
230 B
JavaScript
6 lines
230 B
JavaScript
|
for (; list && firingIndex < firingLength; firingIndex++) {
|
||
|
if (list[firingIndex].apply(data[0], data[1]) === false && options.stopOnFalse) {
|
||
|
memory = false; // To prevent further calls using add
|
||
|
break;
|
||
|
}
|
||
|
}
|