generate-sprite-placeholder.js 258 B

12345678910
  1. /**
  2. * Because of extract-text-webpack-plugin interop returns just absolute path to filepath
  3. * @param {string} filepath
  4. * @return {string}
  5. */
  6. function generateSpritePlaceholder(filepath) {
  7. return filepath;
  8. }
  9. module.exports = generateSpritePlaceholder;