(str)
| 956 | // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. |
| 957 | |
| 958 | function lengthBytesUTF16(str) { |
| 959 | return str.length*2; |
| 960 | } |
| 961 | |
| 962 | |
| 963 | function UTF32ToString(ptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…