UNPKG

google-photos-migrate

Version:

A tool to fix EXIF data and recover filenames from a Google Photos takeout.

13 lines (12 loc) 318 B
export const exhaustiveCheck = (_) => { throw new Error('Exhaustive type check failed.'); }; export function asyncGenToAsync(f) { return async (...args) => { const wg = []; for await (const result of f(...args)) { wg.push(result); } return Promise.all(wg); }; }