�PNG  IHDR��;���IDATx��ܻn�0���K�� �)(�pA��� ���7�LeG{�� �§㻢|��ذaÆ 6lذaÆ 6lذaÆ 6lom��$^�y���ذag�5bÆ 6lذaÆ 6lذa{���� 6lذaÆ �`����}H�Fkm�,�m����Ӫ���ô�ô!� �x�|'ܢ˟;�E:���9�&ᶒ�}�{�v]�n&�6� �h��_��t�ڠ͵-ҫ���Z;��Z$�.�P���k�ž)�!��o���>}l�eQfJ�T��u і���چ��\��X=8��Rن4`Vw�l�>����n�G�^��i�s��"ms�$�u��i��?w�bs[m�6�K4���O���.�4��%����/����b�C%��t ��M�ז� �-l�G6�mrz2���s�%�9��s@���-�k�9�=���)������k�B5����\��+͂�Zsٲ ��Rn��~G���R���C����� �wIcI��n7jJ���hۛNCS|���j0��8y�iHKֶۛ�k�Ɉ+;Sz������L/��F�*\��Ԕ�#"5��m�2��[S��������=�g��n�a�P�e�ғ�L�� lذaÆ 6l�^k��̱aÆ 6lذaÆ 6lذa;���� �_��ذaÆ 6lذaÆ 6lذaÆ ���R���IEND�B` let { list } = require('postcss') /** * Throw special error, to tell beniary, * that this error is from Autoprefixer. */ module.exports.error = function (text) { let err = new Error(text) err.autoprefixer = true throw err } /** * Return array, that doesn’t contain duplicates. */ module.exports.uniq = function (array) { return [...new Set(array)] } /** * Return "-webkit-" on "-webkit- old" */ module.exports.removeNote = function (string) { if (!string.includes(' ')) { return string } return string.split(' ')[0] } /** * Escape RegExp symbols */ module.exports.escapeRegexp = function (string) { return string.replace(/[$()*+-.?[\\\]^{|}]/g, '\\$&') } /** * Return regexp to check, that CSS string contain word */ module.exports.regexp = function (word, escape = true) { if (escape) { word = this.escapeRegexp(word) } return new RegExp(`(^|[\\s,(])(${word}($|[\\s(,]))`, 'gi') } /** * Change comma list */ module.exports.editList = function (value, callback) { let origin = list.comma(value) let changed = callback(origin, []) if (origin === changed) { return value } let join = value.match(/,\s*/) join = join ? join[0] : ', ' return changed.join(join) } /** * Split the selector into parts. * It returns 3 level deep array because selectors can be comma * separated (1), space separated (2), and combined (3) * @param {String} selector selector string * @return {Array>} 3 level deep array of split selector * @see utils.test.js for examples */ module.exports.splitSelector = function (selector) { return list.comma(selector).map(i => { return list.space(i).map(k => { return k.split(/(?=\.|#)/g) }) }) }