Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c1b8985461 | |||
| 8c3f9da11a | |||
| ca57604da8 | |||
| 1f605ce18e | |||
| 47348064c2 | |||
| 93fe5b3f7f | |||
| 0dae994202 | |||
| d2456c2844 |
@@ -1,5 +1,14 @@
|
|||||||
# ChangeLog
|
# ChangeLog
|
||||||
|
|
||||||
|
## 2020-06-11 (0.0.5)
|
||||||
|
|
||||||
|
- modify types require method
|
||||||
|
|
||||||
|
## 2020-06-11 (0.0.4)
|
||||||
|
|
||||||
|
- modify types export
|
||||||
|
- add package repository
|
||||||
|
|
||||||
## 2020-06-10 (0.0.3)
|
## 2020-06-10 (0.0.3)
|
||||||
|
|
||||||
- add types init value
|
- add types init value
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
+5
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mtfos-validator",
|
"name": "mtfos-validator",
|
||||||
"version": "0.0.3",
|
"version": "0.0.5",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -12,5 +12,9 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"jest": "^26.0.1",
|
"jest": "^26.0.1",
|
||||||
"standard": "^12.0.1"
|
"standard": "^12.0.1"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.trj.tw/nodejs/validator.git"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+8
-15
@@ -1,15 +1,8 @@
|
|||||||
const Base = require('./base.js')
|
const types = {}
|
||||||
const StringType = require('./string.js')
|
module.exports = types
|
||||||
const NumberType = require('./number.js')
|
types.Base = require('./base.js')
|
||||||
const BooleanType = require('./boolean.js')
|
types.StringType = require('./string.js')
|
||||||
const ObjectType = require('./object.js')
|
types.NumberType = require('./number.js')
|
||||||
const ArrayType = require('./array.js')
|
types.BooleanType = require('./boolean.js')
|
||||||
|
types.ObjectType = require('./object.js')
|
||||||
module.exports = {
|
types.ArrayType = require('./array.js')
|
||||||
Base,
|
|
||||||
StringType,
|
|
||||||
NumberType,
|
|
||||||
BooleanType,
|
|
||||||
ObjectType,
|
|
||||||
ArrayType
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user