mirror of
https://github.com/DataTables/DataTables.git
synced 2025-04-02 20:25:21 +02: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