mirror of
https://github.com/DataTables/DataTables.git
synced 2025-01-30 23:52:11 +01:00
223fed5e94
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