mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 09:15:01 +03:00
4 lines
117 B
JavaScript
Executable File
4 lines
117 B
JavaScript
Executable File
export const createLocalId = () => `local:${Date.now()}`;
|
|
|
|
export const isLocalId = (id) => id.startsWith('local:');
|