The trim-hex plugin will minify hex color values if possible.
yarn add bredon-plugin-trim-hex
You may alternatively use npm i --save bredon-plugin-trim-hex
.
import { compile } from 'bredon'
import trimHexPlugin from 'bredon-plugin-trim-hex'
const input = '#FFFFFF #FAFAFA'
const output = compile(input, {
plugins: [
trimHexPlugin()
]
})
console.log(output)
// => #FFF #FAFAFA
Bredon is licensed under the MIT License.
Documentation is licensed under Creative Common License.
Created with ♥ by @rofrischmann and all the great contributors.