import url from 'url'; const WHITE_LIST = ['hoge.com', 'piyo.com', 'huga.com']; /** * 対象のサイトで iframe の埋め込みを許可するかどうか * * @returns {boolean} */ const isAllowEmbed = () => { const hostname = parent !== window ? url.parse(document.referrer).hostname : null; return WHITE_LIST.indexOf(hostname) !== -1; }