1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-06 23:56:13 +02:00
Files
joplin/packages/lib/models/utils/isItemId.ts
2023-10-25 14:43:22 +01:00

4 lines
75 B
TypeScript

export default (id: string) => {
return id.match(/^[0-9a-zA-Z]{32}$/);
};