暗色模式
通过一个字符串路径删除对象值
import {delByPath} from '@vill-v/path-prop' delByPath([{test: {foor: 'bar'}}], '[0].test.foor') // => [{test: {}}] delByPath([{test: {foor: 'bar'}}], [0, 'test', 'foor']) // => [{test: {}}]
declare const delByPath: (value: any, path: Path) => void;