UNPKG

@instantdb/core

Version:

Instant's core local abstraction

10 lines (8 loc) 151 B
export function pick(obj, keys) { if (!keys) return obj; const ret = {}; keys.forEach((key) => { ret[key] = obj[key]; }); return ret; }