6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
import * as plugins from './smartdata.plugins.js';
|
|
|
|
export const getNewUniqueId = async (prefixArg?: string) => {
|
|
return plugins.smartunique.uni(prefixArg);
|
|
};
|