diff options
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/isIterable.js')
-rw-r--r-- | sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/isIterable.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/isIterable.js b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/isIterable.js new file mode 100644 index 00000000..afcc62fb --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/isIterable.js @@ -0,0 +1,8 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +var iterator_1 = require("../symbol/iterator"); +function isIterable(input) { + return input && typeof input[iterator_1.iterator] === 'function'; +} +exports.isIterable = isIterable; +//# sourceMappingURL=isIterable.js.map
\ No newline at end of file |