Fixed assignment operators should not be used in return statements

pull/38/head
tycrek 3 years ago
parent 4ce2e4d731
commit 9d61bdaec0
No known key found for this signature in database
GPG Key ID: 25D74F3943625263

@ -17,7 +17,7 @@ module.exports = () => {
let d;
data.get()
.then((D) => d = D.map(([, resource]) => resource))
.then((D) => (d = D.map(([, resource]) => resource)))
.then(() => {
console.log(d);
d.forEach(({ token, size }) => {

Loading…
Cancel
Save