google-spreadsheet
Advanced tools
Comparing version 3.0.7 to 3.0.8
@@ -28,2 +28,10 @@ // https://eslint.org/docs/user-guide/configuring | ||
'no-continue': 0, | ||
// override airbnb - breaks old version of node - https://github.com/eslint/eslint/issues/7749 | ||
'comma-dangle': ['error', { | ||
arrays: 'always-multiline', | ||
objects: 'always-multiline', | ||
imports: 'always-multiline', | ||
exports: 'always-multiline', | ||
functions: 'never', // this breaks | ||
}], | ||
}, | ||
@@ -30,0 +38,0 @@ overrides: [ |
@@ -39,3 +39,3 @@ const _ = require('lodash'); | ||
this._handleAxiosResponse.bind(this), | ||
this._handleAxiosErrors.bind(this), | ||
this._handleAxiosErrors.bind(this) | ||
); | ||
@@ -42,0 +42,0 @@ |
@@ -84,3 +84,3 @@ const _ = require('lodash'); | ||
actualColumn, | ||
cellData, | ||
cellData | ||
); | ||
@@ -409,3 +409,3 @@ } | ||
const rawRows = await this.getCellsInRange( | ||
`A${firstRow}:${lastColumn}${lastRow}`, | ||
`A${firstRow}:${lastColumn}${lastRow}` | ||
); | ||
@@ -412,0 +412,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"description": "Google Sheets API (v4) -- simple interface to read/write data and manage sheets", | ||
"version": "3.0.7", | ||
"version": "3.0.8", | ||
"license": "Unlicense", | ||
@@ -8,0 +8,0 @@ "keywords": [ |
62794
1284