PavelPonomarenko
Results
3
issues of
PavelPonomarenko
Dont export callback sets to host object
Code: ``` js new Line(100, 100, 150, 100) .distanceTo( new Point(95, 100), false ); ``` Expected: `5` Result: `0` Description: If `point` is on infinity line it returns zero always
Here: if ( ! in_array($method, array('to', 'cc', 'bcc'))) Because `in_array(0, array('to', 'cc', 'bcc'))` equals to true It's better to use if ( ! in_array($method, array('to', 'cc', 'bcc'), true)) instead to...