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