safeDecodeURIComponent 函数用于解码 URL 组件(安全版本,失败返回原字符串)。
import { safeDecodeURIComponent } from '@movk/core'
safeDecodeURIComponent('%E4%B8%AD%E6%96%87') // '中文'
safeDecodeURIComponent('hello%20world') // 'hello world'
safeDecodeURIComponent('%invalid%') // '%invalid%'
safeDecodeURIComponent(str)解码 URL 组件(安全版本)。
7c832 — refactor!: 重构模块架构,拆分 utils 为专业化模块