ejs icon indicating copy to clipboard operation
ejs copied to clipboard

Fix capitalisation of zero length strings

Open GothAck opened this issue 13 years ago • 0 comments

Capitalisation of zero length strings tried to uppercase undefined due to typeof str[0] === 'undefined', .charAt(0) fixes this by returning an empty string if the char does not exist.

GothAck avatar May 23 '12 13:05 GothAck