UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

13 lines (10 loc) 184 B
const getMaxTempKey = arr => { if (arr.length === 0) { return -1; } return Math.max.apply( Math, arr.map(o => o.__temp_key__) ); }; export default getMaxTempKey;