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

10 lines
236 B
JavaScript

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