UNPKG

@gent-js/gent

Version:

template-based data generator.

11 lines (10 loc) 279 B
import { AbstractJsonable } from "../abstractJsonable.js"; export class NullJsonable extends AbstractJsonable { type = "null"; constructor(probability, weight) { super(probability, weight); } toJSONImpl(keyOrIndex, context) { return null; } }