Problems on a website on iOS devices when passing JSON data

My webapp is working on the desktop and on Android devices, but I tested it on two IOS devices and it no longer works, a few days ago it was also working normally on IOS devices, has there been an update? The problem is the following, when passing data as an argument in a function in console.log on Chrome on IOS (I’ve already tested Safari and other browsers) it just stops at the line where I put a console.log to debug, it doesn’t execute the line : var items = dados.itens , however if I put a console.log(dados.itens) make a copy of the object that is returning on the desktop and insert it manually in the “items” variable then yes it works on IOS.

async function getItens(dados) { 
    console.log('test debbuger') 
    var itens = dados.itens