| 8 | } |
| 9 | |
| 10 | static Value GetFloat64(const CallbackInfo& info) { |
| 11 | size_t byteOffset = info[1].As<Number>().Uint32Value(); |
| 12 | return Number::New(info.Env(), info[0].As<DataView>().GetFloat64(byteOffset)); |
| 13 | } |
| 14 | |
| 15 | static Value GetInt8(const CallbackInfo& info) { |
| 16 | size_t byteOffset = info[1].As<Number>().Uint32Value(); |
nothing calls this directly
no test coverage detected