nodejs_path 0.0.8

Port path module (and tests) of nodejs to rust using the same algorithms.
Documentation
1
2
3
4
5
6
7
8
// Align to https://github.com/nodejs/node/blob/master/lib/path.js

/// `nodejs_path::posix` provides access to POSIX specific implementations of the path methods.
pub mod posix;
/// `nodejs_path::win32` provides access to  Windows-specific implementations of the path methods.
pub mod win32;

pub(crate) mod shared;