aboutsummaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/every.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/every.ts')
-rw-r--r--tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/every.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/every.ts b/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/every.ts
index b40ac78623..5b985748d9 100644
--- a/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/every.ts
+++ b/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/every.ts
@@ -9,6 +9,9 @@ import { Observer, OperatorFunction } from '../types';
* ## Example
* A simple example emitting true if all elements are less than 5, false otherwise
* ```javascript
+ * import { of } from 'rxjs';
+ * import { every } from 'rxjs/operators';
+ *
* of(1, 2, 3, 4, 5, 6).pipe(
* every(x => x < 5),
* )