如何修复Javascript意外令牌非法

时间:2014-03-06 22:17:09

标签: javascript push-notification syntax-error

我在第一行的以下代码中收到错误:

if (typeof module != ‘undefined’ && module.exports) {
  module.exports = PushNotification;
}

这是错误: enter image description here

我似乎无法在这里找到语法错​​误。我正在尝试使用PushPlugin for iOS。

1 个答案:

答案 0 :(得分:3)

看起来你是从富文本文档中复制粘贴的,它插入了智能引号:

‘undefined’

用常规引号替换它们:

'undefined'