blob: e87e402c7d42962f512c51b0778982e175cc3d15 [file] [log] [blame]
/* @flow */
"use strict";
/**
* Stringify PostCSS node including its raw "before" string.
*/
module.exports = function(node /*: Object*/) /*: string*/ {
let result = "";
if (node.raws.before) {
result += node.raws.before;
}
result += node.toString();
return result;
};