Equivalent of .Length() in Insight Maker, which returns the number of elements when performed on a vector, but returns the number of characters when performed on a string
Examples
length_IM(c("a", "b", "c")) # 3
#> [1] 3
length_IM("abcdef") # 6
#> [1] 6