UNPKG

cannery-adapter-rest

Version:
38 lines (31 loc) 1.34 kB
'use strict'; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } var Car = function () { function Car(id) { _classCallCheck(this, Car); this.id = id; } _createClass(Car, [{ key: 'getName', value: function getName() { return 'cars'; } }, { key: 'getParent', value: function getParent() { return null; } }, { key: 'toJSON', value: function toJSON() { return { id: this.id, make: 'Mazda', model: 'Mazda3' }; } }]); return Car; }(); module.exports = Car;