-
Notifications
You must be signed in to change notification settings - Fork 1
Develop #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Develop #24
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
| value: true | ||
| }); | ||
|
|
||
| var _axios = require('axios'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'require' is not defined.
| }; | ||
|
|
||
| exports.default = ajax; | ||
| module.exports = exports['default']; No newline at end of file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'exports' is not defined.
'module' is not defined.
| }); | ||
| }; | ||
|
|
||
| exports.default = ajax; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'exports' is not defined.
| @@ -0,0 +1,24 @@ | |||
| 'use strict'; | |||
|
|
|||
| Object.defineProperty(exports, "__esModule", { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'exports' is not defined.
| }; | ||
|
|
||
| exports.default = ajax; | ||
| module.exports = exports['default']; No newline at end of file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'exports' is not defined.
'module' is not defined.
| } | ||
| }; | ||
|
|
||
| exports.default = ajax; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'exports' is not defined.
| @@ -0,0 +1,28 @@ | |||
| 'use strict'; | |||
|
|
|||
| Object.defineProperty(exports, "__esModule", { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'exports' is not defined.
| @@ -0,0 +1,28 @@ | |||
| 'use strict'; | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the function form of "use strict".
|
|
||
| /* eslint-disable */ | ||
| jest.mock('../conector/ajax'); | ||
| jest.mock('../connector/ajax'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'jest' is not defined.
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'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'jest' is not defined.
| } | ||
| pairs = queryString.split('&'); | ||
| pairs.forEach((p) => { | ||
| let pair = p; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'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'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'jest' is not defined.
| function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
|
|
||
| jest.mock('../conector/ajax'); | ||
| jest.mock('../connector/ajax'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'jest' is not defined.
No description provided.