GroupOp.js 378 B

12345678910111213141516
  1. var Op = require("../Op");
  2. //TODO: ...write this...
  3. var GroupOp = module.exports = (function(){
  4. // CONSTRUCTOR
  5. var base = Op, proto, klass = function GroupOp(opts){
  6. base.call(this, opts);
  7. };
  8. proto = klass.prototype = Object.create(base.prototype, {constructor:{value:klass}});
  9. // PROTOTYPE MEMBERS
  10. proto.write = function writeProjected(obj){
  11. };
  12. return klass;
  13. })();