mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
eslint: Fix unicorn/explicit-length-check. (#32666)
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
@@ -236,7 +236,7 @@ export function process_fenced_code(content: string): string {
|
||||
|
||||
// Clean up all trailing blocks by letting them
|
||||
// insert closing fences
|
||||
while (handler_stack.length !== 0) {
|
||||
while (handler_stack.length > 0) {
|
||||
const handler = handler_stack.at(-1);
|
||||
handler!.done();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user