UNPKG

pathabs

Version:

Resolve the absolute path from a relative or OS-specific path

11 lines (5 loc) 133 B
import pathabs from "../src/pathabs.mjs"; let path = "~/Documents"; console.log(path); path = pathabs(path); console.log(path);