UNPKG

phenomic

Version:

Modern website generator based on the React and Webpack ecosystem.

13 lines (10 loc) 256 B
// @flow import { join } from "path" /** * Normalize path into uri * Join, replace multiple / or \ to single / */ const pathToUri = function(...args: Array<string>): string { return join(...args).replace(/(\/|\\)+/g, "/") } export default pathToUri