git fetch origin cb5ca32b84e1b53466c067524bc5841180dc295b
git reset --hard cb5ca32b84e1b53466c067524bc5841180dc295b
body: JSON.stringify(user)
php://input
var_dump(file_get_contents('php://input'));
const values = Object.values(obj);
const count = values.flat().length;
// или
const count = [].concat(...values).length;
// или
const count = values.reduce((acc, n) => acc + n.length, 0);
// или
const count = eval(values.map(n => n.length).join('+')) || 0;