Helper to create setter properties.
object on which the setter should be declared.
property name
symbol instance
import propertyToSymbol from "apprt-core/propertyToSymbol";const _config = Symbol("_config");class MyClass { constructor(){ propertyToSymbol(this, "config", _config); }} Copy
import propertyToSymbol from "apprt-core/propertyToSymbol";const _config = Symbol("_config");class MyClass { constructor(){ propertyToSymbol(this, "config", _config); }}
Helper to create setter properties.