omit.js
返回 在目标对象中 omit[删除; 忽略] 指定属性的对象
import omit from "omit.js";
var data = {
"carNumber": "85C10783",
"createTime": 1565248477000,
"deptName": "营销中心OTO部-项目开发",
"name": "杨石",
"passId": 36,
"passType": 2,
"remark": " ",
"type": null
};
console.log(omit(data, ["carNumber", "name"]));
/*
{
"createTime": 1565248477000,
"deptName": "营销中心OTO部-项目开发",
"passId": 36,
"passType": 2,
"remark": " ",
"type": null
}
*/
//end