'use strict'; module.exports = { objExclude(obj = {}, exclude = []) { const result = {}; Object.keys(obj).forEach(key => { if (exclude.indexOf(key) < 0) { result[key] = obj[key]; } }); return result; }, };