mirror of https://github.com/nodejs/node.git
a5d90c435c
lib/path.js routines normalizeArray() and resolve() have for loops that count down from end of an array. The loop indexes are initialized using "array.length" rather than "array.length-1". The initial array element accessed is always beyond the end of array and the value is 'undefined'. Strangely, code exists that acts to ignore undefined values so that the typos are unnoticeable. Existing tests emit no errors either before or after changing to "length-1". Tests _do_ start failing at "length-2". (Actually it is node that starts to fail at "length-2" - that's a valid enough test...) |
||
---|---|---|
benchmark | ||
cmake | ||
deps | ||
doc | ||
lib | ||
src | ||
test | ||
tools | ||
.gitattributes | ||
.gitignore | ||
AUTHORS | ||
BSDmakefile | ||
CMakeLists.txt | ||
CTestConfig.cmake | ||
ChangeLog | ||
LICENSE | ||
Makefile | ||
Makefile-gyp | ||
Makefile.cmake | ||
README.cmake | ||
README.md | ||
TODO | ||
TODO.win32 | ||
config.h.cmake | ||
configure | ||
configure-gyp | ||
generate-projects.bat | ||
node.gyp | ||
wscript |
README.md
Evented I/O for V8 javascript.
To build:
./configure
make
make install
To run the tests:
make test
To build the documentation:
make doc
To read the documentation:
man doc/node.1