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

13 lines (9 loc) 229 B
// inspired by ramda and rambda /* eslint-disable */ export default function fromPairs(pairs) { const result = {} for (var i = 0, l = pairs.length; i < l; i++) { result[pairs[i][0]] = pairs[i][1] } return result }