"use client";
functiono(t) {
const e = t.options.bullet || "*";
if (e !== "*" && e !== "+" && e !== "-")
thrownewError(
"Cannot serialize items with `" + e + "` for `options.bullet`, expected `*`, `+`, or `-`"
);
return e;
}
export {
o as checkBullet
};