check-rule.js 502 B

12345678910111213141516171819202122
  1. /**
  2. * @typedef {import('../types.js').Options} Options
  3. * @typedef {import('../types.js').State} State
  4. */
  5. /**
  6. * @param {State} state
  7. * @returns {Exclude<Options['rule'], null | undefined>}
  8. */
  9. export function checkRule(state) {
  10. const marker = state.options.rule || '*'
  11. if (marker !== '*' && marker !== '-' && marker !== '_') {
  12. throw new Error(
  13. 'Cannot serialize rules with `' +
  14. marker +
  15. '` for `options.rule`, expected `*`, `-`, or `_`'
  16. )
  17. }
  18. return marker
  19. }