From 8526cb034d04cea1b8e6339c553211664fcbb839 Mon Sep 17 00:00:00 2001 From: Patrick Eriksson Date: Fri, 7 Feb 2020 15:48:27 +0100 Subject: [PATCH] Replace nbsp char with space char --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index e11a42b..de4d11d 100644 --- a/index.js +++ b/index.js @@ -27,7 +27,7 @@ module.exports = function (source) { document .querySelectorAll("link[href][rel=stylesheet]") .forEach(function(link) { - if (!link.href.match(prefix) || link.stale) return; + if (!link.href.match(prefix) || link.stale) return; injectCss(link, link.href.split("?")[0] + "?unix=${+new Date()}"); }); }