UNPKG

116 BJavaScriptView Raw
1export function length(x){
2 if (!x && x !== '' || x.length === undefined){
3 return NaN
4 }
5
6 return x.length
7}