Conversation
# Conflicts: # dist/CompTabl3.js # dist/THead.js # dist/package.json
|
|
||
| import Tabl3 from '../index'; | ||
| import conector from '../conector/ajax'; | ||
| import conector from '../connector/ajax'; |
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| value: true | ||
| }); | ||
|
|
||
| var _axios = require('axios'); |
| }; | ||
|
|
||
| exports.default = ajax; | ||
| module.exports = exports['default']; No newline at end of file |
There was a problem hiding this comment.
'exports' is not defined.
'module' is not defined.
| }); | ||
| }; | ||
|
|
||
| exports.default = ajax; |
| @@ -0,0 +1,24 @@ | |||
| 'use strict'; | |||
|
|
|||
| Object.defineProperty(exports, "__esModule", { | |||
| }; | ||
|
|
||
| exports.default = ajax; | ||
| module.exports = exports['default']; No newline at end of file |
There was a problem hiding this comment.
'exports' is not defined.
'module' is not defined.
| } | ||
| }; | ||
|
|
||
| exports.default = ajax; |
| @@ -0,0 +1,28 @@ | |||
| 'use strict'; | |||
|
|
|||
| Object.defineProperty(exports, "__esModule", { | |||
| @@ -0,0 +1,28 @@ | |||
| 'use strict'; | |||
There was a problem hiding this comment.
Use the function form of "use strict".
|
|
||
| /* eslint-disable */ | ||
| jest.mock('../conector/ajax'); | ||
| jest.mock('../connector/ajax'); |
Codecov Report
@@ Coverage Diff @@
## master #24 +/- ##
==========================================
- Coverage 88.8% 83.78% -5.03%
==========================================
Files 16 18 +2
Lines 393 444 +51
Branches 114 127 +13
==========================================
+ Hits 349 372 +23
- Misses 37 62 +25
- Partials 7 10 +3
Continue to review full report at Codecov.
|
| function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
|
|
||
| jest.mock('../conector/ajax'); | ||
| jest.mock('../connector/ajax'); |
| } | ||
| pairs = queryString.split('&'); | ||
| pairs.forEach((p) => { | ||
| let pair = p; |
There was a problem hiding this comment.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| queryString = queryString.split('?')[1]; | ||
| } | ||
| pairs = queryString.split('&'); | ||
| pairs.forEach((p) => { |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
| export default (qs) => { | ||
| let queryString = qs; | ||
| let pairs = ''; | ||
| const result = {}; |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| @@ -0,0 +1,17 @@ | |||
| export default (qs) => { | |||
| let queryString = qs; | |||
| let pairs = ''; | |||
There was a problem hiding this comment.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| @@ -0,0 +1,17 @@ | |||
| export default (qs) => { | |||
| let queryString = qs; | |||
There was a problem hiding this comment.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| @@ -0,0 +1,17 @@ | |||
| export default (qs) => { | |||
There was a problem hiding this comment.
'export' is only available in ES6 (use 'esversion: 6').
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
| export const removeParamFromQS = removeParam | ||
| export const extractParamFromQS = extractParam | ||
| export const extractParamFromQSInt = extractParamInt | ||
| export const querystringToJSON = queryStringToJSON |
There was a problem hiding this comment.
'export' is only available in ES6 (use 'esversion: 6').
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.
| import removeParam from './removeParamFromQS' | ||
| import extractParam from './extractParamFromQS' | ||
| import extractParamInt from './extractParamFromQSInt' | ||
| import queryStringToJSON from './queryStringToJSON'; |
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
|
|
||
| jest.mock('../conector/ajax'); | ||
| jest.mock('../connector/ajax'); |
| function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
|
|
||
| jest.mock('../conector/ajax'); | ||
| jest.mock('../connector/ajax'); |
No description provided.