UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

13 lines (12 loc) 426 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UnbiasedProperty = void 0; class UnbiasedProperty { constructor(property) { this.property = property; this.isAsync = () => this.property.isAsync(); this.generate = (mrng, _runId) => this.property.generate(mrng); this.run = (v) => this.property.run(v); } } exports.UnbiasedProperty = UnbiasedProperty;