Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 940 Bytes

File metadata and controls

34 lines (25 loc) · 940 Bytes

bredon-plugin-trim-hex

npm version npm downloads

The trim-hex plugin will minify hex color values if possible.

Installation

yarn add bredon-plugin-trim-hex

You may alternatively use npm i --save bredon-plugin-trim-hex.

Usage

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

License

Bredon is licensed under the MIT License.
Documentation is licensed under Creative Common License.
Created with ♥ by @rofrischmann and all the great contributors.