6 this.input = elem.querySelector('input');
8 this.elem.onclick = this.onClick.bind(this);
12 let checked = this.input.value !== 'true';
13 this.input.value = checked ? 'true' : 'false';
14 checked ? this.elem.classList.add('active') : this.elem.classList.remove('active');
19 export default ToggleSwitch;