Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
reset(isActive?: boolean, goal?: string) {
if (goal) {
this._toString = createInterpolator({
output: [this.getValue(), goal],
})
}
this._value = 0
super.reset(isActive)
}
}
constructor(from: string, to: string) {
super(0)
this._toString = createInterpolator({ output: [from, to] })
}