UNPKG

react-native-flip

Version:
10 lines (9 loc) 194 B
/** * @private * convert array-like objects to real arrays * @param {Object} obj * @returns {Array} */ export default function toArray(obj) { return Array.prototype.slice.call(obj, 0); }