mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-28 14:50:58 +00:00
8 lines
210 B
JavaScript
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
|