diff --git a/src/osc.ts b/src/osc.ts index 52a9934..bdf4790 100644 --- a/src/osc.ts +++ b/src/osc.ts @@ -73,14 +73,13 @@ const oscTypeConverterMap: { [key in OSCType]: OSCTypeConverter } = { toBuffer: () => { return Buffer.alloc(0) }, - fromString: (string: string) => true + fromString: (string: string) => true, }, F: { toBuffer: () => { return Buffer.alloc(0) }, - fromString: (string: string) => false - } + fromString: (string: string) => false, }; function argsToBuffer(args: OSCArg[]) {