Chore: remove debug code

pull/4275/head
Laurent Cozic 2020-12-23 23:46:36 +00:00
parent 5dc3baa50c
commit 502c812d9c
1 changed files with 0 additions and 1 deletions

View File

@ -7,7 +7,6 @@ export default function convertToScreenCoordinates(o: any): any {
if (typeof o === 'object' && o !== null) {
o = JSON.parse(JSON.stringify(o));
console.info('K', Object.keys(o));
for (const k of Object.keys(o)) {
o[k] = convertToScreenCoordinates(o[k]);
}