Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

startWith.js 411B

12345678910111213
  1. import { concat } from '../observable/concat';
  2. import { isScheduler } from '../util/isScheduler';
  3. export function startWith(...array) {
  4. const scheduler = array[array.length - 1];
  5. if (isScheduler(scheduler)) {
  6. array.pop();
  7. return (source) => concat(array, source, scheduler);
  8. }
  9. else {
  10. return (source) => concat(array, source);
  11. }
  12. }
  13. //# sourceMappingURL=startWith.js.map