path.dirname(p)
Return the directory name of a path. Similar to the Unix dirname command.
Example:
path.dirname('/foo/bar/baz/asdf/quux')
// returns '/foo/bar/baz/asdf'path.dirname(p)
Return the directory name of a path. Similar to the Unix dirname command.
Example:
path.dirname('/foo/bar/baz/asdf/quux')
// returns '/foo/bar/baz/asdf'
Please login to continue.