UNPKG

postcss-normalize-url

Version:

Normalize URLs with PostCSS

17 lines (15 loc) 247 B
'use strict'; /* * On the web do nothing, * since emulating the built-in Node.js looks quite brittle/ */ module.exports = { /** * * @param {string} url * @returns {string} */ normalize: function (url) { return url; }, };