Authored by 毕凯

更新 eslint

... ... @@ -5,7 +5,7 @@
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon -e js,hbs -i public/ ./bin/www",
"lint": "eslint -c .eslintrc --fix --cache .",
"lint": "eslint -c .eslintrc --cache .eslintcache --fix .",
"validate": "npm ls"
},
"dependencies": {
... ...
... ... @@ -19,7 +19,7 @@ if (typeof wx !== 'undefined') {
function(json) {
var _appId, _timestamp, _nonceStr, _signature;
if (json !== undefined && json !== '') {
if (json) {
_appId = json.appId.toString();
_timestamp = json.timestamp;
_nonceStr = json.nonceStr.toString();
... ...
... ... @@ -19,7 +19,7 @@ if (typeof wx !== 'undefined') {
function(json) {
var _appId, _timestamp, _nonceStr, _signature;
if (json !== undefined && json !== '') {
if (json) {
_appId = json.appId.toString();
_timestamp = json.timestamp;
_nonceStr = json.nonceStr.toString();
... ...