UNPKG

@open-wc/building-utils

Version:
12 lines (9 loc) 298 B
const path = require('path'); /** * Transforms a file system path to a browser URL. For example windows uses `\` on the file system, * but it should use `/` in the browser. */ function toFilePath(browserPath) { return browserPath.replace(/\//g, path.sep); } module.exports = { toFilePath };