JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3677
  • Score
    100M100P100Q20743F
  • License MIT

[Deprecated] Use postcss-value-parser instead

Package Exports

  • css-list

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (css-list) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

[Deprecated] Use postcss-value-parser instead

css-list Build Status

css parsing helpers

API

If separators is not specified, it will default to [' ', '\n', '\t', ',', '/'].

list.each(input[, separators], cb)

list.each('"50%" 50%/100% calc(100% + 20%)', [' ', '/'], function (value, type) {
    // "50%" quote
    // 50% null
    // 100% null
    // calc(100% + 20%) func
});

list.map(input[, separators], cb)

list.map('"50%" 50%/100% calc(100% + 20%)', [' ', '/'], function (value, type, prevValue, prevType) {
    if(type === 'func' || type === 'quote') {
        return type;
    }
});
// quote 50%/100% func

list.split(input[, separators], last)

// space
list.split('10px 20px 5px 15px')', ['\n', '\t', ' '])
// ['10px', '20px', '5px', '15px']
// comma
list.split('10px, 20px, 5px, ')', [','], true)
// ['10px', '20px', '5px', '']