Files
med-notes/.pnpm-store/v10/files/2a/64e9c9fd6f01f7591c1f74c5f39f45292e3fd5a0263c87fc1056eb387fe43dc7670445072489695d49b6cbbb6f8cfeb823f05eddcf1ee3b3f6d37374bce625
2025-05-09 05:30:08 +02:00

14 lines
368 B
Plaintext

"use strict";
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const isMatch = (match, path) => {
const parts = path.split(".");
let part;
let value = match;
while ((part = parts.shift()) != null && value != null) {
value = value[part];
}
return value != null;
};
exports.isMatch = isMatch;
//# sourceMappingURL=Matches.cjs.map