123456789101112131415 |
- module.exports = checkBullet
- function checkBullet(context) {
- var marker = context.options.bullet || '*'
- if (marker !== '*' && marker !== '+' && marker !== '-') {
- throw new Error(
- 'Cannot serialize items with `' +
- marker +
- '` for `options.bullet`, expected `*`, `+`, or `-`'
- )
- }
- return marker
- }
|