Skip to content

Commit fca0f0c

Browse files
committed
fix(graphite): changed argument type to passify mixed vuejs#5908
1 parent ab4643b commit fca0f0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/util.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function isFalse (v: any): boolean %checks {
2323
* by succinct key order. Guaranteed to at least return an
2424
* empty object.
2525
*/
26-
export function keySort (obj: Object): Object {
26+
export function keySort (obj: any): Object {
2727
if (isObject(obj) === false) {
2828
return {}
2929
}

0 commit comments

Comments
 (0)