UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

14 lines (9 loc) • 206 B
function NullStore(options) { } NullStore.prototype.store = function(req, cb) { cb(); } NullStore.prototype.verify = function(req, providedState, cb) { cb(null, true); } module.exports = NullStore;