extname

abstract fun extname(path: String): String(source)

Return the extension of the path, from the last '.' to end of string in the last portion of the path. If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string.

Parameters

path

the path to evaluate.

Throws

{TypeError} if path is not a string.