nsuite / joinPosixPath
Function: joinPosixPath()
joinPosixPath(...
args):string
Defined in: UtilsPath.ts:63
Joins multiple path segments into a single POSIX path.
Parameters
args
...string[]
The path segments to join.
Returns
string
The joined POSIX path.
Example
ts
import { joinPosixPath } from "nsuite";
const targetPath = joinPosixPath("path", "to", "file.txt");