Shorten CSS hex codes
npm install --save shorten-css-hex
import shortenCssHex from 'shorten-css-hex';
shortenCssHex('#000000');
// => '#000'
shortenCssHex('#AaBBcC');
// => '#abc'
shortencsshex('#112233ff');
// => '#123f'
shortencsshex('#123456');
// => '#123456'
shortencsshex('#123456ff');
// => '#123456ff'
var shortenCssHex = require('shorten-css-hex');
shortenCssHex('#000000');
// => '#000'
shortenCssHex('#AaBBcC');
// => '#abc'
shortencsshex('#112233ff');
// => '#123f'
shortencsshex('#123456');
// => '#123456'
shortencsshex('#123456ff');
// => '#123456ff'
MIT © Dustin Specker