smalos / nubuilder_dev

Object.prototype builtins should not be used directly JS-0021
Bug risk
Major
1 occurrence in this check
Do not access Object.prototype method 'hasOwnProperty' from target object
448    const tables = []
449
450    for (const key in nuFORM.tableSchema) {
451      if (nuFORM.tableSchema.hasOwnProperty(key)) {452        if (nuSERVERRESPONSE.viewSchema.indexOf(key) == -1) {
453          tables.push(key)
454        }