- 監修者:秀村欣二、編集者:吉澤五郎・川窪啓資
- 体裁:四六上製 280ページ
ISBN-13:9784938661564
刊行日:1992/05
トインビー生誕100年記念
function escape_html (string) {
if(typeof string !== 'string') {
return string;
}
return string.replace(/[&'`"<>]/g, function(match) {
return {
'&': '&',
"'": ''',
'`': '`',
'"': '"',
'<': '<',
'>': '>',
}[match]
});
}