Files
30-seconds-of-code/node_modules/property-information/lib/util/schema.js
2019-08-20 15:52:05 +02:00

19 lines
265 B
JavaScript

'use strict'
module.exports = Schema
var proto = Schema.prototype
proto.space = null
proto.normal = {}
proto.property = {}
function Schema(property, normal, space) {
this.property = property
this.normal = normal
if (space) {
this.space = space
}
}