isAbsolute

abstract fun isAbsolute(path: String): Boolean(source)

Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory.

If the given {path} is a zero-length string, false will be returned.

Parameters

path

path to test.

Throws

{TypeError} if path is not a string.