fix(core): drop the toBoolean function
So far Angular have used the toBoolean function to decide if the parsed value is truthy. The function made more values falsy than regular JavaScript would, e.g. strings 'f' and 'no' were both treated as falsy. This creates suble bugs when backend sends a non-empty string with one of these values and something suddenly hides in the application Thanks to lgalfaso for test ideas. BREAKING CHANGE: values 'f', '0', 'false', 'no', 'n', '[]' are no longer treated as falsy. Only JavaScript falsy values are now treated as falsy by the expression parser; there are six of them: false, null, undefined, NaN, 0 and "". Closes #3969 Closes #4277 Closes #7960
M
Michał Gołębiowski committed
bdfc9c02d021e08babfbc966a007c71b4946d69d
Parent: e970df8
Committed by Peter Bacon Darwin <pete@bacondarwin.com>
on 6/26/2014, 7:52:04 PM