/var/www/cobraambalaj/node_modules/autoprefixer/lib
NameSizeModeActions
hacks/-0755rm
at-rule.js7040644editdlrm
autoprefixer.d.ts24510644editdlrm
autoprefixer.js40170644editdlrm
brackets.js8520644editdlrm
browsers.js17570644editdlrm
declaration.js40370644editdlrm
info.js31670644editdlrm
old-selector.js13920644editdlrm
old-value.js4650644editdlrm
prefixer.js31350644editdlrm
prefixes.js107940644editdlrm
processor.js214000644editdlrm
resolution.js23080644editdlrm
selector.js32310644editdlrm
supports.js62350644editdlrm
transition.js82080644editdlrm
utils.js17000644editdlrm
value.js25810644editdlrm
vendor.js2080644editdlrm
Edit: /var/www/cobraambalaj/node_modules/autoprefixer/lib/utils.js (1700B)
let { list } = require('postcss') module.exports = { /** * Throw special error, to tell beniary, * that this error is from Autoprefixer. */ error (text) { let err = new Error(text) err.autoprefixer = true throw err }, /** * Return array, that doesn’t contain duplicates. */ uniq (array) { return [...new Set(array)] }, /** * Return "-webkit-" on "-webkit- old" */ removeNote (string) { if (!string.includes(' ')) { return string } return string.split(' ')[0] }, /** * Escape RegExp symbols */ escapeRegexp (string) { return string.replace(/[$()*+-.?[\\\]^{|}]/g, '\\$&') }, /** * Return regexp to check, that CSS string contain word */ regexp (word, escape = true) { if (escape) { word = this.escapeRegexp(word) } return new RegExp(`(^|[\\s,(])(${word}($|[\\s(,]))`, 'gi') }, /** * Change comma list */ editList (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 */ splitSelector (selector) { return list.comma(selector).map(i => { return list.space(i).map(k => { return k.split(/(?=\.|#)/g) }) }) } }