Add stub to get started

This commit is contained in:
Pieter Vander Vennet 2021-07-13 13:26:36 +02:00
parent 49979c2072
commit 12fc26fa44

18
javascript/interpret.ts Normal file
View file

@ -0,0 +1,18 @@
const interpret = (definitionFile, tags) => {
}
const example = interpret({
"highway": {
"residential": 1.2
}
},
{
"highway": "residential"
})
console.log("Expect", 1.2, "got", example)