nomem.js 274 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 function Nomem(){ var opt = {}, u; opt.put = function(file, data, cb){ cb(null, -9) }; // dev/null! opt.get = function(file, cb){ cb(null) }; return opt; } if(typeof window !== "undefined"){ window.Nomem = Nomem; } else { try{ module.exports = Nomem }catch(e){} }