UNPKG

214 BJavaScriptView Raw
1/**
2 * @fileoverview
3 * Given a path, replace all characters not recognized by closure-compiler with a '$'
4 */
5module.exports = function toSafePath(originalPath) {
6 return originalPath.replace(/[:,?]+/g, '$');
7};