| 13 | } |
| 14 | |
| 15 | static Value GetInt8(const CallbackInfo& info) { |
| 16 | size_t byteOffset = info[1].As<Number>().Uint32Value(); |
| 17 | return Number::New(info.Env(), info[0].As<DataView>().GetInt8(byteOffset)); |
| 18 | } |
| 19 | |
| 20 | static Value GetInt16(const CallbackInfo& info) { |
| 21 | size_t byteOffset = info[1].As<Number>().Uint32Value(); |