Skip to content

Commit bf018c9

Browse files
committed
fix: Allow to pass any object in get helper
1 parent 60e7f47 commit bf018c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export function set(object: object, path: string, value: any) {
4545

4646
return { ...object, ...finalValue };
4747
}
48-
export function get(object: object, path: string) {
48+
export function get(object: any, path: string) {
4949
path = path.replace(/\[(\w+)\]/g, '.$1'); // convert indexes to properties
5050
path = path.replace(/^\./, ''); // strip a leading dot
5151
const a = path.split('.');

0 commit comments

Comments
 (0)