* added test to fs.readlink.spec.js
* added test for fs.write() to try and write a file opened without the O_WRITE flag
* added test to fs.write() that attempts to write with a buffer that is too small
* added a test to fs.write() to try and write to a file that doesn't exist
* added more specific summary of test for writing to buffer when length is too long, check the type of error that a test returns
* Adjusted the message on line 69 to be more clear
* update from var to let and const
* Update from var to let and const
* Update times.spec.js from var to let and const
* Strict mode addition, migrated let usage to const
* Revert changes to package-lock.json
* Update errors.spec.js
Updating errors.spec.js to use const/let appropriately instead of var.
* Update errors.spec.js
- Changed corrected 'using' to 'use'.
- Changed 'let' to 'const' becuase the're not being changed during the function scope.
* fixes issue 667: Update code in tests/some/fs.write.spec.js to use const/let AND strict mode
* fixes issue 667: Update code in tests/some/fs.write.spec.js to use const/let AND strict mode
* changed let to const for variables pointing to required function
* switched a few variable lets to const in file fs.write.spec.js
* switched a few variable lets to const in file fs.write.spec.js
* added package-lock.json file
* changed variables let to const
* installed npm
* modified time-flags.spec.js
* Update code to use const/let instead of var
* update the variable type from let to const
* add Strict mode
* review fixed
* refactored code in tests/spec/filer.buffer.spec.js
* reverted changes to package-lock.json which shouldn't have been changed
* updated package-lock.json
* trying to fix bug
* roll back changes to package-lock.json, change lets to consts in filer.buffer.spec.js, added new line at the end of filer.buffer.spec.js
* exchange var for const of require statements
Changed decleration of import files from var to const in interface.js
* Fixed all areas where var was used as well as use destructing assignment for CONST imports.
* Fixed import const statement
* Added changes from let to const in certain lines
* Fixed#707 Replaced var with const and let and added strict mode
* Fixed src/fs-watcher.js and changed remaining var to let
* Changed src/fs-watcher.js file to use const instead of let at line 52 and 57
* Add files via upload
* Add files via upload
* Revert "Add files via upload"
This reverts commit 214977d8bf.
* Update fs.appendFile.spec.js
* s
* Revert "s"
This reverts commit 8aa5cbbbd6.
* Changed all `let` to `const`
As informed, all variables will not change at all in this file, therefore all `let` declarations have been changed to `const`
* Updated File to use let/const and strict mode
* Update path-resolution.spec.js
* Updated path-resolution.spec.js
Upon review and further inspection, there was a realization that there was need for the "let" variable as all variable were not modified.
Instead, "const" was used.