Irina Glushko 2389e7160b HW1 done | hace 3 años | |
---|---|---|
.. | ||
lib | hace 3 años | |
node_modules | hace 3 años | |
CHANGELOG.md | hace 3 años | |
LICENSE | hace 3 años | |
README.md | hace 3 años | |
package.json | hace 3 años |
<img align="right" width="135" height="95"
title="Philosopher’s stone, logo of PostCSS"
src="https://postcss.org/logo-leftp.svg">
A fault-tolerant CSS parser for PostCSS, which will find & fix syntax errors, capable of parsing any input. It is useful for:
const safe = require('postcss-safe-parser')
const badCss = 'a {'
postcss(plugins).process(badCss, { parser: safe }).then(result => {
result.css //= 'a {}'
})