| 183 | } |
| 184 | |
| 185 | JSObject* gjs_byte_array_from_byte_array(JSContext* cx, GByteArray* array) { |
| 186 | return gjs_byte_array_from_data_copy(cx, array->len, array->data); |
| 187 | } |
| 188 | |
| 189 | GBytes* gjs_byte_array_get_bytes(JSObject* obj) { |
| 190 | bool is_shared_memory; |
no test coverage detected