model.js 254 B

1234567
  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) { var value = attributes[key]; this[key] = value; }
  6. }
  7. };