mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 12:01:00 +00:00
10 lines
236 B
JavaScript
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
|