Files

13 lines
541 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// @ts-nocheck
// lime-file-utils 已被删除,此函数不再可用
// 如果需要 base64ToPath 功能,请使用 lime-file-utils 或自行实现
/**
* base64转路径
* @param {Object} base64
* @deprecated 此功能已不可用,请使用其他实现
*/
export function base64ToPath(base64: string, filename: string | null = null):Promise<string> {
console.error('base64ToPath: lime-file-utils 已被删除,此功能不可用')
return Promise.reject(new Error('lime-file-utils 已被删除base64ToPath 功能不可用'))
}