flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
15 lines (11 loc) • 374 B
JavaScript
var path = require('path');
function normalizeImportPath(importPath) {
return importPath.replace(/\\/g, "/");
}
function joinNormalizedPath(...segments) {
return normalizeImportPath(path.join(...segments));
}
exports.joinNormalizedPath = joinNormalizedPath;
exports.normalizeImportPath = normalizeImportPath;
//# sourceMappingURL=normalize-path.cjs.map
;