Constraints are used to define conditions that must be met by the value of a variable.
The uniform API of the constraints allows chains to be formed.
The valid constraint allows an always valid query to be performed. this constraint is mainly intended for testing.
You can call the method via the monster namespace new Monster.Constraint.Valid()
.
<script type="module">
import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.30.0/dist/monster.js';
new Monster.Constraint.Valid();
</script>
Alternatively, you can also integrate this function individually.
<script type="module">
import {Valid} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.30.0/dist/modules/constraints/valid.js';
new Valid();
</script>