rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
16 lines • 378 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._Path = void 0;
const path_join_js_1 = require("./impl/path-join.js");
/**
* @public
* File path manipulation utilities.
*/
class _Path {
constructor() {
}
}
exports._Path = _Path;
/** {@inheritDoc pathJoin} */
_Path.join = path_join_js_1.pathJoin;
//# sourceMappingURL=_path.js.map