setup-python/node_modules/ts-jest/dist/util/normalize-slashes.js

7 lines
197 B
JavaScript
Raw Normal View History

2019-06-27 08:12:00 +07:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function normalizeSlashes(value) {
return value.replace(/\\/g, '/');
}
exports.normalizeSlashes = normalizeSlashes;