Skip to content

Latest commit

 

History

History
 
 

path

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Namespace: "file-system".path

Enables path-specific operations like join, extension, etc.

Variables
  • separator - String.
Functions
  • normalize( path String ) String
    Normalizes a path, taking care of occurrances like ".." and "//".
    • path - String
      The path to be normalized.
    • return - String
  • join( ...paths Array of String ) String
    Joins all the provided string components, forming a valid and normalized path.
    • ...paths - Array of String
      An array of string components to be joined.
    • return - String