Currently one can use: ``` iconv.encode(str, encoding).length ``` but it's slow because it creates intermediate and immediately discarded buffer. Would be better to expose similar but efficient api: ``` iconv.byteLength(str, encoding) ```