mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-06 14:18:36 -05:00
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
|