D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
whatsapp-api
/
node_modules
/
whatsapp-web.js
/
src
/
webCache
/
Filename :
WebCache.js
back
Copy
/** * Default implementation of a web version cache that does nothing. */ class WebCache { async resolve() { return null; } async persist() { } } class VersionResolveError extends Error { } module.exports = { WebCache, VersionResolveError };