Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

165
Vistas
Changing a value of an index in a buffer array

so I am using requestly to modify the http responses

function modifyResponse(args) {
  const {method, url, response, responseType, requestHeaders, requestData, responseJSON} = args;
  console.log(response)
  return response;
}

so this function returns response, response is the actual response coming from the server, I can change it with the function, the problem is this: when I console.log the response I get this

ArrayBuffer(53)
byteLength: 53
[[Prototype]]: ArrayBuffer
[[Int8Array]]: Int8Array(53)
[[Uint8Array]]: Uint8Array(53)
[[ArrayBufferByteLength]]: 53
[[ArrayBufferData]]: 629

https://ibb.co/zQVbvLq

I tried reading through the array (image above), and found out that it's all in ascii, that is not the problem,I want to do something like this

Int8Array[0] = 10

the problem is that I don't have the knowledge to do it, I don't know how to access Int8Array through the modifyResponse function.

I have to change the function to something like this :

function modifyResponse(args) {
  const {method, url, response, responseType, requestHeaders, requestData, responseJSON} = args;
  //console.log(response)
response[Int8Array[0]] = 10
  return response;
}

I basically have to access response then access Int8Array and then change the element at index 0, but it does not work :/ can anyone help me?

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

The [[Int8Array]] is an internal property - you cannot simply access it as you would with any other property.

If you want to edit the ArrayBuffer as an Int8Array you need to construct it like so:

const array = new Int8Array(response);
array[0] = 10;
return response;
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda