summaryrefslogtreecommitdiff
path: root/cli/js/ops/fs_events.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-03-16 10:22:16 +0100
committerGitHub <noreply@github.com>2020-03-16 10:22:16 +0100
commit1edb20b399944c6eec1d7c555ab170b6dd276840 (patch)
tree00be05e4ff944cc1db67a44d8f9a47f197c7e7bc /cli/js/ops/fs_events.ts
parent70434b5bfba701f9de2221b64ee40262c5370ae0 (diff)
refactor: add no-return-await lint rule (#4384)
Diffstat (limited to 'cli/js/ops/fs_events.ts')
-rw-r--r--cli/js/ops/fs_events.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/ops/fs_events.ts b/cli/js/ops/fs_events.ts
index 09e82c515..706efc1b0 100644
--- a/cli/js/ops/fs_events.ts
+++ b/cli/js/ops/fs_events.ts
@@ -16,7 +16,7 @@ class FsEvents implements AsyncIterableIterator<FsEvent> {
}
async next(): Promise<IteratorResult<FsEvent>> {
- return await sendAsync("op_fs_events_poll", {
+ return sendAsync("op_fs_events_poll", {
rid: this.rid
});
}