parpeoficial/stackerjs-orm

View on GitHub
src/BaseEntity.js

Summary

Maintainability
A
0 mins
Test Coverage


export class BaseEntity 
{

    set attributes(attributes) 
    {
        Object.keys(attributes).forEach(key =>
            this[key] = attributes[key]);
    }

}