Files
HRM-System/node_modules/es-toolkit/dist/compat/object/property.mjs
2026-04-13 08:19:53 +08:00

10 lines
156 B
JavaScript

import { get } from './get.mjs';
function property(path) {
return function (object) {
return get(object, path);
};
}
export { property };