mirror of
https://github.com/plankanban/planka.git
synced 2025-12-29 17:25:05 +03:00
4 lines
127 B
JavaScript
4 lines
127 B
JavaScript
|
|
export const nextLocalId = (maxId = 0) => maxId + Date.now() / 10000000000000;
|
||
|
|
|
||
|
|
export const isLocalId = (id) => id % 1 !== 0;
|