hotfix/array-check-contains-type #20
@ -1,5 +1,9 @@
|
|||||||
# ChangeLog
|
# ChangeLog
|
||||||
|
|
||||||
|
## 2020-06-11 (0.0.5)
|
||||||
|
|
||||||
|
- modify types require method
|
||||||
|
|
||||||
## 2020-06-11 (0.0.4)
|
## 2020-06-11 (0.0.4)
|
||||||
|
|
||||||
- modify types export
|
- modify types export
|
||||||
|
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
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mtfos-validator",
|
"name": "mtfos-validator",
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Loading…
Reference in New Issue
Block a user