UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

10 lines (8 loc) 202 B
exports = module.exports = typeof Object.keys === 'function' ? Object.keys : shim; exports.shim = shim; function shim (obj) { var keys = []; for (var key in obj) keys.push(key); return keys; }