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 |
|
---|
3 | module.exports = Schema
|
---|
4 |
|
---|
5 | var proto = Schema.prototype
|
---|
6 |
|
---|
7 | proto.space = null
|
---|
8 | proto.normal = {}
|
---|
9 | proto.property = {}
|
---|
10 |
|
---|
11 | function 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.