shorten-css-hex
v1.1.0
Published
Shorten CSS hex codes
Downloads
28,172
Readme
shorten-css-hex
Shorten CSS hex codes
Install
npm install --save shorten-css-hex
Usage
ES2015
import shortenCssHex from 'shorten-css-hex';
shortenCssHex('#000000');
// => '#000'
shortenCssHex('#AaBBcC');
// => '#abc'
shortencsshex('#112233ff');
// => '#123f'
shortencsshex('#123456');
// => '#123456'
shortencsshex('#123456ff');
// => '#123456ff'
ES5
var shortenCssHex = require('shorten-css-hex');
shortenCssHex('#000000');
// => '#000'
shortenCssHex('#AaBBcC');
// => '#abc'
shortencsshex('#112233ff');
// => '#123f'
shortencsshex('#123456');
// => '#123456'
shortencsshex('#123456ff');
// => '#123456ff'
LICENSE
MIT © Dustin Specker