UNPKG

dumousset-my-exercises

Version:

Alpha

13 lines (12 loc) 208 B
export const my_size_alpha = (str) => { let cmp = 1; if(typeof str == "string"){ while( str[cmp]){ cmp ++; } return cmp; } else { return 0; } }