(input)
| 4303 | __name(isomorphicDecode, "isomorphicDecode"); |
| 4304 | var invalidIsomorphicEncodeValueRegex = /[^\x00-\xFF]/; |
| 4305 | function isomorphicEncode(input) { |
| 4306 | assert(!invalidIsomorphicEncodeValueRegex.test(input)); |
| 4307 | return input; |
| 4308 | } |
| 4309 | __name(isomorphicEncode, "isomorphicEncode"); |
| 4310 | function parseJSONFromBytes(bytes) { |
| 4311 | return JSON.parse(utf8DecodeBytes(bytes)); |
no test coverage detected
searching dependent graphs…