Files
emaui/node_modules/@mantine/form/esm/paths/get-data-path.mjs
2026-05-29 15:23:46 +03:00

8 lines
210 B
JavaScript

'use client';
function getDataPath(formName, fieldPath) {
return formName ? `${formName}-${fieldPath.toString()}` : fieldPath.toString();
}
export { getDataPath };
//# sourceMappingURL=get-data-path.mjs.map