Compare commits
No commits in common. "8645d9914ba5561a525a742f67fca7eca20532fa" and "057466c952e406cb99d52b6fbd478937cc92a93c" have entirely different histories.
8645d9914b
...
057466c952
@ -1,9 +1,5 @@
|
|||||||
# 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,19 +1,14 @@
|
|||||||
const TypeBase = require('./types/base.js')
|
const types = require('./types/index.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 = TypeBase
|
validator.Base = types.Base
|
||||||
validator.string = (...args) => new TypeString(...args)
|
validator.string = (...args) => new types.StringType(...args)
|
||||||
validator.number = (...args) => new TypeNumber(...args)
|
validator.number = (...args) => new types.NumberType(...args)
|
||||||
validator.boolean = (...args) => new TypeBoolean(...args)
|
validator.boolean = (...args) => new types.BooleanType(...args)
|
||||||
validator.array = (...args) => new TypeArray(...args)
|
validator.array = (...args) => new types.ArrayType(...args)
|
||||||
validator.object = (...args) => new TypeObject(...args)
|
validator.object = (...args) => new types.ObjectType(...args)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* validate
|
* validate
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mtfos-validator",
|
"name": "mtfos-validator",
|
||||||
"version": "0.0.5",
|
"version": "0.0.4",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Loading…
Reference in New Issue
Block a user