@solid/community-server
Version:
Community Solid Server: an open and modular implementation of the Solid specifications
16 lines • 533 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RecordObject = void 0;
/**
* Helper class for instantiating multiple objects with Components.js.
* See https://github.com/LinkedSoftwareDependencies/Components.js/issues/26
*/
// eslint-disable-next-line ts/no-extraneous-class
class RecordObject {
constructor(record = {}) {
// eslint-disable-next-line no-constructor-return
return record;
}
}
exports.RecordObject = RecordObject;
//# sourceMappingURL=RecordObject.js.map