mirror of
https://github.com/plankanban/planka.git
synced 2025-12-27 01:11:50 +03:00
9 lines
269 B
JavaScript
Executable File
9 lines
269 B
JavaScript
Executable File
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
export const createLocalId = () => `local:${Date.now()}`;
|
|
|
|
export const isLocalId = (id) => id.startsWith('local:');
|