nomem.js 274 B

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