UNPKG

@nozbe/watermelondb

Version:

Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast

7 lines (4 loc) 184 B
// inspired by ramda and rambda type KeyValueOut<O = any> = { [k: string]: O } type KeyValueIn<O = any> = [string, O][] export default function toPairs(obj: KeyValueIn): KeyValueOut