6 lines
239 B
JavaScript
6 lines
239 B
JavaScript
|
import { scheduled } from '../scheduled/scheduled';
|
||
|
import { innerFrom } from './innerFrom';
|
||
|
export function from(input, scheduler) {
|
||
|
return scheduler ? scheduled(input, scheduler) : innerFrom(input);
|
||
|
}
|
||
|
//# sourceMappingURL=from.js.map
|