center-key/fetch-json

Switch to ES6 object method shorthand in: fetch-json.js

dpilafian opened this issue · 2 comments

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

Can I work on this