MCPcopy
hub / github.com/postcss/autoprefixer / values

Method values

lib/prefixes.js:414–425  ·  view source on GitHub ↗

* Return values, which must be prefixed in selected property

(type, prop)

Source from the content-addressed store, hash-verified

412 * Return values, which must be prefixed in selected property
413 */
414 values(type, prop) {
415 let data = this[type]
416
417 let global = data['*'] && data['*'].values
418 let values = data[prop] && data[prop].values
419
420 if (global && values) {
421 return utils.uniq(global.concat(values))
422 } else {
423 return global || values || []
424 }
425 }
426}
427
428module.exports = Prefixes

Callers 5

addMethod · 0.80
removeMethod · 0.80
prefixedMethod · 0.80
toRemoveMethod · 0.80
prefixes.test.jsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected