mirror of
https://github.com/DataTables/DataTables.git
synced 2025-03-22 14:19:49 +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