model.js 270 B

12345678910
  1. // TODO: This file was created by bulk-decaffeinate.
  2. // Sanity-check the conversion and remove this comment.
  3. app.Model = class Model {
  4. constructor(attributes) {
  5. for (var key in attributes) {
  6. var value = attributes[key];
  7. this[key] = value;
  8. }
  9. }
  10. };