前提・実現したいこと
jsのプログラムを書いているのですが、以下の文法エラーがよくわかりません。
何度見直しても文法エラーが無いように思えます。
何かわかりましたら、コメントお願いします。
発生している問題・エラーメッセージ
const discovered = async (peripheral) => { ^ SyntaxError: Unexpected token (
該当のソースコード
'use strict'; //const noble = require('noble-mac'); const noble = require('noble'); const fs = require('fs'); function asyncFunc(rssi) { return new Promise((resolve) => { // ...何かしらの時間がかかる処理... let result; console.log(rssi); fs.appendFile('out.csv', ',' + rssi, (error) => { result = "csvファイルに出力しました"; resolve(result); }); }); } //BLE deviceをさがす。 const discovered = async (peripheral) => { console.log(`BLE Device Found: ${peripheral.advertisement.localName}(${peripheral.uuid}) RSSI${peripheral.rssi}`); if (peripheral.advertisement.localName === 'BlueJelly') { noble.stopScanning(); let text = await asyncFunc(peripheral.rssi); noble.stopScanning(); console.log(text); console.log('device found'); } } //スキャン開始 const scanStart = () => { noble.startScanning(); noble.on('discover', discovered); } if (noble.state === 'poweredOn') { scanStart(); } else { noble.on('stateChange', scanStart); }
package.json
{ "name": "noble_lesson", "version": "1.0.0", "description": "", "main": "app.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "csv": "^5.1.3", "noble": "^1.9.1", "noble-mac": "git+https://github.com/Timeular/noble-mac.git", "node-bebop": "^0.6.0" } }
補足情報(FW/ツールのバージョンなど)
node v8.11.1