mirror of
https://github.com/DataTables/DataTables.git
synced 2025-03-03 04:29:15 +01:00
simplify conditions: !A || (A && (B || C) really is the same as: !A || (true && (B || C)) which simplifies to: !A || (B || C) which simplifies to: !A || B || C