@@ -1,3 +1,5 @@
+// TODO: This file was created by bulk-decaffeinate.
+// Sanity-check the conversion and remove this comment.
/*
* decaffeinate suggestions:
* DS101: Remove unnecessary use of Array.from
* DS002: Fix invalid constructor
* DS102: Remove unnecessary code created because of implicit returns
* DS207: Consider shorter variations of null checks
* DS206: Consider reworking classes to avoid initClass
* Copyright 2013-2023 Thibaut Courouble and other contributors
*
app.Model = class Model {
constructor(attributes) {
for (var key in attributes) { var value = attributes[key]; this[key] = value; }