Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

check-data

Package Overview
Dependencies
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

check-data - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

11

index.js

@@ -16,6 +16,7 @@ "use strict"

/**
* 判断是否允许为空值(需要忽略的数据)
* 判断是否允许为空值,默认将undefined、 null、空字符串视为空值
* 默认值在大多数场景下适用,在出现例外时,可以在指定字段上使用ignore属性,重置对默认空值的定义
* @param {*} data 需要校验空值的数据
*/
isNull(data, ignore = [undefined, ""]) {
isNull(data, ignore = [undefined, null, '']) {

@@ -199,3 +200,3 @@ if (ignore.indexOf(data) > -1) {

}
}

@@ -266,3 +267,3 @@

methods[type] = options
}

@@ -277,3 +278,3 @@

}
return Validator[name]

@@ -280,0 +281,0 @@

{
"name": "check-data",
"version": "2.0.0",
"version": "2.0.1",
"description": "JS对象验证器",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -46,3 +46,3 @@ ### Install

* `ignore` *Array* - 忽略指定值,在字段级覆盖对默认空值的定义,如将某个指定字段的空值定义为[null, ""]
* `ignore` *Array* - 忽略指定的值,在字段级覆盖对默认空值的定义,如将某个指定字段的空值定义为[null, ""]

@@ -125,6 +125,7 @@ * `and` *Array、Function* - 声明依赖的参数名数组,支持数组和函数两种表达式,函数表达式用于声明指定值的依赖关系。要求依赖的所有参数都不能为空

### schema验证
### schema验证(预定义验证器)
> 通过预定义schema,实现options单例复用(option为静态数据),避免频繁创建重复的实例,可节省内存和减少计算开销。
> 通过预定义schema,实现options单例复用(option为静态数据),避免频繁创建重复的实例,可节省内存和减少计算开销。在环境允许的情况下应优先考虑schema方式。
```js

@@ -162,4 +163,5 @@ Validator.schema(name, options)

// let { error, data } = schema(json)
let { error, data } = schema(json)
// 或
let { error, data } = Validator.demo(json)

@@ -171,4 +173,6 @@ ```

```js
// 一维数组
let { error, data } = Validator(["a", "b", "c"], [String])
// 内嵌对象
let { error, data } = Validator([{

@@ -175,0 +179,0 @@ "a":1,

@@ -13,8 +13,6 @@ "use strict"

a: {
type: String,
ignore: [null, undefined]
type: String
},
b: {
type: Array,
ignore: [null, undefined, ''],
handle(data) {

@@ -21,0 +19,0 @@ return data.join()

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc