Closed Jokero closed 8 years ago
Now I can use multiple ways to get number of milliseconds for singular forms of string:
parse('1h') // 3600000 parse('1 h') // 3600000 parse('1hour') // 3600000 parse('1 hour') // 3600000 parse('1hours') // 3600000 parse('1 hours') // 3600000 // ...
But I can't do in the following way without integer:
parse('h') // 0, should be 3600000 parse('hour') // 0, should be 3600000
Now I can use multiple ways to get number of milliseconds for singular forms of string:
But I can't do in the following way without integer: