import globalCacheDir from"global-cache-dir";
export const getDefaultOutput=async()=>await globalCacheDir(CACHE_DIR);
const CACHE_DIR="nve";
export const validateOutput=(output)=>{
if(typeof output!=="string"){
throw new TypeError(`Option "output" must be a string: ${output}`)
}
};