Re: [web-nfc] Read of NFC tag without Web NFC Record

Don't set things to empty string "" for things you don't need :-) just leave it out

```
    var nfcWatchOption = {
        url: "",
        recordType: "",
        mediaType: "",
        mode: "any"
      };
```

```
const options = { mode: "any" };
navigator.nfc.watch(message => processMessage(message), options);
```


-- 
GitHub Notification of comment by kenchris
Please view or discuss this issue at https://github.com/w3c/web-nfc/issues/138#issuecomment-351365400 using your GitHub account

Received on Wednesday, 13 December 2017 11:33:26 UTC