/** * ハイフン前後に英数字以外の文字がある場合、ハイフンをスペースへ * 1-日, 日-2 → 1 日, 日 2 */ export default function extraHyphenToSpace(str: string): string;