smartdata/ts/classes.convenience.ts

6 lines
152 B
TypeScript
Raw Normal View History

import * as plugins from './plugins.js';
2023-02-06 11:43:11 +01:00
export const getNewUniqueId = async (prefixArg?: string) => {
return plugins.smartunique.uni(prefixArg);
2023-06-25 01:27:09 +02:00
};