"use client";
functioni(t) {
const e = t.options.ruleRepetition || 3;
if (e < 3)
thrownewError(
"Cannot serialize rules with repetition `" + e + "` for `options.ruleRepetition`, expected `3` or more"
);
return e;
}
export {
i as checkRuleRepetition
};