Skip to content

Commit 30f8907

Browse files
Update nordicNRPlus/parseCbor.ts
Co-authored-by: Markus Tacker <[email protected]>
1 parent 1b802bd commit 30f8907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nordicNRPlus/parseCbor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export type LocationData = {
66
uncertainty: number
77
src: string
88
}
9-
export const parseCbor = (cborData: string): LocationData => {
9+
export const parseCBORLocationData = (cborData: string): LocationData => {
1010
const buf = Buffer.from(cborData, 'base64')
1111
const decoded = cbor.decodeAllSync(buf)
1212
const keyMap: Record<number, string> = {

0 commit comments

Comments
 (0)