-
-
Save jonathantneal/3086586 to your computer and use it in GitHub Desktop.
parseCSS.js // returns parsed CSS text as a JavaScript object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (global) { | |
function clean(css) { | |
return css | |
.replace(/\/\*[\W\w]*?\*\//g, "") // remove comments | |
.replace(/^\s+|\s+$/g, "") // remove trailing spaces | |
.replace(/\s*([:;{}])\s*/g, "$1") // remove trailing separator spaces | |
.replace(/\};+/g, "}") // remove unnecessary separators | |
.replace(/([^:;{}])}/g, "$1;}") // add trailing separators | |
} | |
function refine(css, isBlock) { | |
return /^@/.test(css) ? (css = css.split(" ")) && { | |
"identifier": css.shift().substr(1).toLowerCase(), | |
"parameters": css.join(" ") | |
} : (isBlock ? /:$/ : /:/).test(css) ? (css = css.split(":")) && { | |
"property": css.shift(), | |
"value": css.join(":") | |
} : css; | |
} | |
function parse(css, regExp, object) { | |
for (var m; (m = regExp.exec(css)) != null;) { | |
if (m[2] == "{") object.block.push(object = { | |
"selector": refine(m[1], true), | |
"block": [], | |
"parent": object | |
}); | |
else if (m[2] == "}") object = object.parent; | |
else if (m[2] == ";") object.block.push(refine(m[1])); | |
} | |
} | |
global.parseCSS = function (css) { | |
return parse(clean(css), /([^{};]*)([;{}])/g, css = { block: [] }), css; | |
}; | |
})(this); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(e){function t(e){return e.replace(/\/\*[\W\w]*?\*\//g,"").replace(/^\s+|\s+$/g,"").replace(/\s*([:;{}])\s*/g,"$1").replace(/\};+/g,"}").replace(/([^:;{}])}/g,"$1;}")}function n(e,t){return/^@/.test(e)?(e=e.split(" "))&&{identifier:e.shift().substr(1).toLowerCase(),parameters:e.join(" ")}:(t?/:$/:/:/).test(e)?(e=e.split(":"))&&{property:e.shift(),value:e.join(":")}:e}function r(e,t,r){for(var i;(i=t.exec(e))!=null;)i[2]=="{"?r.block.push(r={selector:n(i[1],!0),block:[],parent:r}):i[2]=="}"?r=r.parent:i[2]==";"&&r.block.push(n(i[1]))}e.parseCSS=function(e){return r(t(e),/([^{};]*)([;{}])/g,e={block:[]}),e}})(this) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@jonathantneal
I try to understand line 34: so "css" is overwritten by re-defining it inline (3rd parameter) which is then also returned (by reference).
Is that correct?
return x,y; just executed x but returns y would be the conclusion. Never seen this syntax...