You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently interface.js is using many var statements to import files such as in line 1: var { promisify } = require('es6-promisify');
these should instead be included using const
The text was updated successfully, but these errors were encountered:
trowacat
changed the title
Update code in src/filesystem/interface.js
Update code in src/filesystem/interface.js to use const rather than var
Jan 23, 2019
Currently interface.js is using many var statements to import files such as in line 1:
var { promisify } = require('es6-promisify');
these should instead be included using const
The text was updated successfully, but these errors were encountered: