JezK
Edit File: throwUnobservableError.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createInvalidObservableTypeError = void 0; function createInvalidObservableTypeError(input) { return new TypeError("You provided ".concat(input !== null && typeof input === 'object' ? 'an invalid object' : "'".concat(input, "'"), " where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")); } exports.createInvalidObservableTypeError = createInvalidObservableTypeError; //# sourceMappingURL=throwUnobservableError.js.map