Formatting (pre-merge)

This commit is contained in:
Pieter Vander Vennet 2021-07-24 01:59:57 +02:00
parent 135219b5dc
commit 17b35e731e
2 changed files with 374 additions and 382 deletions

View file

@ -96,10 +96,10 @@ export default class SimpleMetaTagger {
const [, denomination] = unit.findDenomination(value)
let canonical = denomination?.canonicalValue(value) ?? undefined;
console.log("Rewritten ", key, " from", value, "into", canonical)
if(canonical === undefined && !unit.eraseInvalid) {
if (canonical === undefined && !unit.eraseInvalid) {
break;
}
feature.properties[key] = canonical;
break;
}