add return to a helper js function

This commit is contained in:
Toshit Chawda 2024-08-08 21:37:30 -07:00
parent 8e81845069
commit 98840a0226
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
4 changed files with 4 additions and 4 deletions

View file

@ -195,7 +195,7 @@ export async function convert_body_inner(body) {
}
export function entries_of_object_inner(obj) {
Object.entries(obj).map(x => x.map(String))
return Object.entries(obj).map(x => x.map(String));
}
export function define_property(obj, k, v) {