UNPKG

@codelytv/primitives-type

Version:
13 lines 389 B
var Learner = (function () { function Learner(enrolledCourses) { this.enrolledCourses = enrolledCourses; } Learner.prototype.toPrimitives = function () { return { enrolledCourses: this.enrolledCourses.map(function (course) { return course.value; }), }; }; return Learner; }()); export { Learner }; //# sourceMappingURL=Learner.js.map