(($) => { 'use strict'; let camera, result; /** * スキャンボタンの HTML を生成する * @return {Object} scanButtonHTML */ const getScanBtnHTML = () => { return ` <div class="kpc-header"> <button type="button" class="kpc-btn js-kcp-button"><i class="fas fa-barcode"></i> スキャン</button> </div> `; }; /** * モーダルの HTML を生成する * @return {Object} modalHTML */ const getModalHTML = () => { return ` <div class="kc
