UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

14 lines (12 loc) 300 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.toPosixPath = toPosixPath; exports.toLocalPath = toLocalPath; function toPosixPath(modulePath) { return modulePath.replace(/\\/g, '/'); } function toLocalPath(p) { return p[0] !== '.' ? './' + p : p; }