pairs.js 155 B

12345
  1. import { from } from './from';
  2. export function pairs(obj, scheduler) {
  3. return from(Object.entries(obj), scheduler);
  4. }
  5. //# sourceMappingURL=pairs.js.map