Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

22
node_modules/@mantine/form/cjs/paths/get-path.cjs generated vendored Normal file
View File

@@ -0,0 +1,22 @@
'use client';
'use strict';
var getSplittedPath = require('./get-splitted-path.cjs');
function getPath(path, values) {
const splittedPath = getSplittedPath.getSplittedPath(path);
if (splittedPath.length === 0 || typeof values !== "object" || values === null) {
return void 0;
}
let value = values[splittedPath[0]];
for (let i = 1; i < splittedPath.length; i += 1) {
if (value == null) {
break;
}
value = value[splittedPath[i]];
}
return value;
}
exports.getPath = getPath;
//# sourceMappingURL=get-path.cjs.map