enable code highlighting for JS in readme

This commit is contained in:
Florian Ludwig 2018-06-05 09:09:21 +02:00 committed by GitHub
parent 5404b06c93
commit b6a6abda99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -116,6 +116,7 @@ If you're using [TheThingsNetwork](https://www.thethingsnetwork.org/) you may wa
Decoder:
```javascript
function Decoder(bytes, port) {
var decoded = {};
if (port === 1) {
@ -124,9 +125,11 @@ Decoder:
}
return decoded;
}
```
Converter:
```javascript
function Converter(decoded, port) {
var converted = decoded;
if (port === 1) {
@ -134,6 +137,7 @@ Converter:
}
return converted;
}
```
# Remote command set