vue-app-sdk
Version:
11 lines (10 loc) • 305 B
JavaScript
import baseProperty from "./_baseProperty.js";
import basePropertyDeep from "./_basePropertyDeep.js";
import isKey from "./_isKey.js";
import toKey from "./_toKey.js";
function property(path) {
return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path);
}
export {
property as default
};