Get the diff between two css
npm install @romainberger/css-diffGet the diff between two css.
``shell`
$ npm install @romainberger/css-diff
`js
const cssDiff = require('@romainberger/css-diff')
const cssA =
body {
background: white;
color: red;
}
const cssB =
body {
background: white;
color: blue;
}
const diff = cssDiff(cssA, cssB)
// body {
// color: blue;
// }
``