signale
signale copied to clipboard
clone method
Is your feature request related to a problem? Please describe.
One way to clone Signale instance is through .scope()
method. Wouldn't be convenient if you could clone instance for change just interactivity without changing its scope, like this:
const interactive = signale.clone({ interactive: true });
It seems pretty easy to change in the code base:
clone(configObj) {
return new Signale(Object.assign(this.currentOptions, ...configObj));
}
What are your thoughts about this idea?