UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

22 lines (18 loc) 410 B
var url = require("url") module.exports = toNerfDart /** * Maps a URL to an identifier. * * Name courtesy schiffertronix media LLC, a New Jersey corporation * * @param {String} uri The URL to be nerfed. * * @returns {String} A nerfed URL. */ function toNerfDart(uri) { var parsed = url.parse(uri) parsed.pathname = "/" delete parsed.protocol delete parsed.auth return url.format(parsed) }