Switch to ES6 object method shorthand in: fetch-json.js
dpilafian opened this issue · 2 comments
dpilafian commented
Upgrade to more modern ES6 function definitions. The newer notation is more compact and looks better.
For example, change:
request: (method, url, data, options) => {
to:
request(method, url, data, options) {
and then make sure all the tests pass: $ npm test
See MDN web docs:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Method_definitions
hemantsonu20 commented
Can I work on this
hemantsonu20 commented
PR #9