split out dateUtils on the backend

This commit is contained in:
azivner
2018-04-02 20:46:46 -04:00
parent 277368ab43
commit 6ab0cea4e3
24 changed files with 90 additions and 111 deletions

View File

@@ -5,8 +5,6 @@ const repository = require('../services/repository');
class Entity {
constructor(row = {}) {
utils.assertArguments(row);
for (const key in row) {
this[key] = row[key];
}