M
path.dirname
History
Added in: v0.1.16
v0.1.16
Introduced in: v0.10.0
v0.10.0
Passing a non-string as the
path argument will throw now.v6.0.0
path.dirname(path): string
Attributes
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'
A TypeError is thrown if path is not a string.