15 lines
267 B
JavaScript
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
|
|
}
|
|
}
|