智能照明系统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/72/728bca8781094d7028f09e0e4aa...

10 lines
243 B

var isObj = require('./isObj');
var isArr = require('./isArr');
var extend = require('./extend');
exports = function(obj) {
if (!isObj(obj)) return obj;
return isArr(obj) ? obj.slice() : extend({}, obj);
};
module.exports = exports;