UNPKG

ntts

Version:

A CLI tool for refactoring an existing NodeJs application to a fully functional TypeScript application.

10 lines (9 loc) 307 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var PathParser = /** @class */ (function () { function PathParser() { } PathParser.win32ToPosixPath = function (path) { return path.split(/\\+/).join('/'); }; return PathParser; }()); exports.default = PathParser;