cfe6d53a5e16a179a6330c08f9925a6ca1b5745588c4812a4bae6415dd6b1cf7c43e44d2641913e4062d75e5486383186fd90889da897e11c3388533ff503c 253 B

12345678910111213
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = hex => {
  6. if (hex[1] === hex[2] && hex[3] === hex[4] && hex[5] === hex[6]) {
  7. return '#' + hex[2] + hex[4] + hex[6];
  8. }
  9. return hex;
  10. };