なんと脚本が出版されるらしい.著者も「安部礼司」である.これはTOKYO FM系列で毎週日曜日の夕方から一時間ぐらいやってる番組で,"beyond the average"のスローガンのもと,企業戦士として働くあまりにも平均的35歳独身サラリーマンの物語である.FMドラマの最高傑作ではないかと思われる.なんといっても間に入る選曲の中途半端な古さ(だいたいバブル前後)がサイコー.本筋とは別に「企業戦士アムロレイジ」なんて話も出てきて,声を本当に古谷さんがやったりしてサイコー.
限定2000部らしい.予約するかな.
*
* Again: this will **not** prevent inline script, e.g.:
* .
*
* This workaround is possible because Safari supports the non-standard 'beforeload' event.
* This allows us to trap the module and nomodule load.
*
* Note also that `nomodule` is supported in later versions of Safari - it's just 10.1 that
* omits this attribute.
* -->
*/
(function () {
const check = document.createElement('script');
if (!('noModule' in check) && 'onbeforeload' in check) {
let support = false;
document.addEventListener(
'beforeload',
(e) => {
if (e.target === check) {
support = true;
} else if (!e.target.hasAttribute('nomodule') || !support) {
return;
}
e.preventDefault();
},
true,
);
check.type = 'module';
const blob = URL.createObjectURL(
new window.Blob([], { type: 'text/javascript' }),
);
check.src = blob;
check.onload = () => {
URL.revokeObjectURL(blob);
};
document.head.appendChild(check);
check.remove();
}
})();