UNPKG

react-cosmos

Version:

Sandbox for developing and testing UI components in isolation

6 lines (5 loc) 264 B
// Copied from https://github.com/sindresorhus/slash/blob/205c404ecf35b7a7a8a687d8d3b79101aaaa9fba/index.js export function slash(path) { const isExtendedLengthPath = /^\\\\\?\\/.test(path); return isExtendedLengthPath ? path : path.replace(/\\/g, '/'); }