of.js 214 B

1234567
  1. import { popScheduler } from '../util/args';
  2. import { from } from './from';
  3. export function of(...args) {
  4. const scheduler = popScheduler(args);
  5. return from(args, scheduler);
  6. }
  7. //# sourceMappingURL=of.js.map