UNPKG

postcss-sorting

Version:

PostCSS plugin to keep rules and at-rules content in order.

11 lines (8 loc) 270 B
module.exports = function processLastComments(node, index, processedNodes) { if (node.type === 'comment' && !node.hasOwnProperty('position')) { node.position = Infinity; node.initialIndex = index; return [...processedNodes, node]; } return processedNodes; };