UNPKG
node-schema
Version:
latest (2.2.0)
2.2.0
2.1.0
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A package for building javascript object schemas
github.com/theadam/node-schema
theadam/node-schema
node-schema
/
index.js
9 lines
(5 loc)
•
169 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
require
(
'es6-promise'
).
polyfill
();
var
Schema
=
require
(
'./src/schema'
);
var
Field
=
require
(
'./src/field'
);
module
.
exports
=
exports
=
Schema
;
Schema
.
Field
=
Field
;