commonly used utilities
npm install @lms-elements/utilsPackage with commonly used utils
``js
import { getObjectPropertyByString } from '@lms-elements/utils';
const a = {
b: {
c: {
value: 'value',
},
},
};
const value = getObjectPropertyByString
``