Check.js 273 Bytes
Newer Older
吴佳 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import Utils from "~/utils"

/**
* Cptsel Check规则
*/
let checkObj = {
}

for (const key in checkObj) {
    if (Object.hasOwnProperty.call(checkObj, key)) {
        checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
    }
}
export default checkObj