With the new type checking feature.
if I get a function like this :
function parseISODate(date) as Moment {
....
}
previsously I was able to do a return Null, it nothing found
no I got a :
Object of type 'Null' does not match return type '$.Toybox.Time.Moment'.
how can i handle/modify that to be good !
thanks