source: node_modules/property-information/lib/util/schema.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 265 bytes
Line 
1'use strict'
2
3module.exports = Schema
4
5var proto = Schema.prototype
6
7proto.space = null
8proto.normal = {}
9proto.property = {}
10
11function Schema(property, normal, space) {
12 this.property = property
13 this.normal = normal
14
15 if (space) {
16 this.space = space
17 }
18}
Note: See TracBrowser for help on using the repository browser.