filer
filer copied to clipboard
Node-like file system for browsers
Update the code inside /filer/tests/spec/fs.copyFile.spec.js (var to let and const), and strict mode
Can I Update do these updates in fs.copyFile.spec.js : https://github.com/filerjs/filer/blob/master/tests/spec/fs.copyFile.spec.js (var to let and const), and strict mode
I want to deal with line ending issues for Windows contributors once and for all. This follows the advice of [using .gitattributes to explicitly set the line endings in a...
Issue698
issue123: I have changed all the constants that were declared using var to const.
I would like to modernize some JS code inside of `filer/test/lib/indexeddb.js` to use `let` and `const` instead of `var` as it has become dated after JavaScript ES6
The times.spec.js file uses the var syntax for variable declarations, as opposed to the more modern const/let syntax
I will change the code to use let instead of var for non global variable declarations and changing require statements to const
Use strict mode in order to see silent errors Have the code use let instead of var, in order to potentially reassign the variable.
I will be updating the code in tests/some/fs.write.spec.js to use const/let rather than var AND include 'strict mode'
I just noticed that "fs.unwatchFile.spec.js" contains lots of var declared variables. Can I get the authorization to update the required variables to use const or let instead of using var?
We have a few branches in `fs.writeFile` that aren't being tested: https://codecov.io/gh/filerjs/filer/src/master/src/filesystem/implementation.js#L1850. To fix this, we need a few more tests added: * test that passes invalid flags to `options.flags`...