import Utils from "~/utils"

/**
 * Sptneg Check规则
 */
let checkObj = {
    "sptp.ord.extkey"                      :null,
    "sptp.ord.inr"                      :null,
}

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