Skip to content

Commit 7f23205

Browse files
committed
refactor: fix code style
1 parent 06d7de3 commit 7f23205

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/heap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function heap ({ value, type, isArray, path }, property) {
66
return wrap(
77
value[property],
88
{
9-
string: `${path.string}${isArray ? `[${property}]` : `.${property}` }`,
9+
string: `${path.string}${isArray ? `[${property}]` : `.${property}`}`,
1010
chain: [...path.chain, property]
1111
}
1212
)

0 commit comments

Comments
 (0)