mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 08:25:14 +00:00
.. | ||
lib | ||
node_modules/postcss | ||
CHANGELOG.md | ||
LICENSE | ||
package.json | ||
README.md |
PostCSS Safe Parser
A fault-tolerant CSS parser for PostCSS, which will find & fix syntax errors, capable of parsing any input. It is useful for:
- Parse legacy code with many hacks. For example, it can parse all examples from Browserhacks.
- Works with demo tools with live input like Autoprefixer demo.
Usage
const safe = require('postcss-safe-parser')
const badCss = 'a {'
postcss(plugins).process(badCss, { parser: safe }).then(result => {
result.css //= 'a {}'
})