[feat] change require types method #13
19
index.js
19
index.js
@ -1,14 +1,19 @@
|
|||||||
const types = require('./types/index.js')
|
const TypeBase = require('./types/base.js')
|
||||||
|
const TypeString = require('./types/string.js')
|
||||||
|
const TypeNumber = require('./types/number.js')
|
||||||
|
const TypeBoolean = require('./types/boolean.js')
|
||||||
|
const TypeArray = require('./types/array.js')
|
||||||
|
const TypeObject = require('./types/object.js')
|
||||||
const validate = require('./validate.js')
|
const validate = require('./validate.js')
|
||||||
const validator = {}
|
const validator = {}
|
||||||
module.exports = validator
|
module.exports = validator
|
||||||
|
|
||||||
validator.Base = types.Base
|
validator.Base = TypeBase
|
||||||
validator.string = (...args) => new types.StringType(...args)
|
validator.string = (...args) => new TypeString(...args)
|
||||||
validator.number = (...args) => new types.NumberType(...args)
|
validator.number = (...args) => new TypeNumber(...args)
|
||||||
validator.boolean = (...args) => new types.BooleanType(...args)
|
validator.boolean = (...args) => new TypeBoolean(...args)
|
||||||
validator.array = (...args) => new types.ArrayType(...args)
|
validator.array = (...args) => new TypeArray(...args)
|
||||||
validator.object = (...args) => new types.ObjectType(...args)
|
validator.object = (...args) => new TypeObject(...args)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* validate
|
* validate
|
||||||
|
Loading…
Reference in New Issue
Block a user