Skip to content

Commit fc3774a

Browse files
byrondoverdavideast
authored andcommitted
fix(utils): Minor formatting improvement
1 parent 253401f commit fc3774a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/utils.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ export function unwrapMapFn (snapshot:firebase.database.DataSnapshot): AFUnwrapp
5757
$value: unwrapped
5858
};
5959
}
60-
Object.defineProperty(unwrapped, '$key', {value: snapshot.ref.key, enumerable: false});
60+
Object.defineProperty(unwrapped, '$key', {
61+
value: snapshot.ref.key,
62+
enumerable: false
63+
});
6164
Object.defineProperty(unwrapped, '$exists', {
6265
value: () => {
6366
return snapshot.exists();

0 commit comments

Comments
 (0)