UNPKG

keyv-file

Version:

File storage adapter for Keyv, using msgpack to serialize data fast and small.

9 lines (8 loc) 197 B
/** * 跨平台安全文件名编解码器 * 基于 encodeURIComponent 实现 */ export declare const SafeFilenameEncoder: { encode(str: string): string; decode(str: string): string; };