2026-04-14 17:41:39 +02:00

15 lines
267 B
JavaScript

/**
* author : Sunil Wang
* createTime : 2017/7/9 19:24
* description :
*/
module.exports = {
options: {
NOT_SUPPORTED_VALUE: 'not supported',
INTERVAL: 1000
},
isNotSupported(res){
return res === this.options.NOT_SUPPORTED_VALUE
}
}