UNPKG

@figliolia/rn-donut-chart

Version:
15 lines (14 loc) 361 B
export class Interpolation { outputRange; inputRange; constructor(...range) { this.outputRange = range; this.inputRange = Array.from(range, (_, i) => i); } add(value) { return new Interpolation(...this.outputRange, value); } get toValue() { return this.inputRange[this.inputRange.length - 1]; } }