From 267b25630166478249b01d5b1c2cd64009bc14ef Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 9 Apr 2013 20:12:11 +0300 Subject: [PATCH] lib/clean.js: use single quotes --- lib/clean.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/clean.js b/lib/clean.js index 719864d3..caef19cd 100644 --- a/lib/clean.js +++ b/lib/clean.js @@ -369,7 +369,7 @@ var CleanCSS = { .replace(/['"]/g, ''); if (/^(http|https):\/\//.test(importedFile)) - return "@import url(" + importedFile + ");"; + return '@import url(' + importedFile + ');'; var relativeTo = importedFile[0] == '/' ? options.root : -- 2.34.1