ts-budgie
Version:
Converts TypeScript code to Budgie.
10 lines • 389 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Fully lowercases and converts to forward slashes a path.
*
* @param filePath Path to normalize.
* @returns Fully normalized version of the path.
*/
exports.fullyNormalizeFilePath = function (filePath) { return filePath.replace(/\\/g, "/").toLowerCase(); };
//# sourceMappingURL=utils.js.map