mogwai
Version:
Object-to-graph mapper for Node.js using Gremlin in Mongoose style (very alpha work)
17 lines (10 loc) • 370 B
JavaScript
var Property = require("./property");
module.exports = StringProperty = (function () {
function StringProperty() {
Property.apply(this, arguments); // Call parent constructor
}
// Inherit from Property
StringProperty.prototype = Object.create(Property.prototype);
StringProperty.prototype.constructor = StringProperty;
return StringProperty;
})();