path.dirname nodejs code example
Example: path.dirname nodejs
/* The path.dirname() method returns the directory name of a path,
similar to the Unix dirname command. Trailing directory separators
are ignored, see path.sep. */
path.dirname('/foo/bar/baz/asdf/quux');
// Returns: '/foo/bar/baz/asdf'