智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LightingSystemApp-serial/.svn/pristine/d4/d45dcff08c81e8284b472992865...

9 lines
180 B

3 years ago
const isObj = require('./isObj');
const isFn = require('./isFn');
exports = function(val) {
return val !== null && isObj(val) && isFn(val.pipe);
};
module.exports = exports;