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

2
Cargo.lock generated
View file

@ -513,7 +513,7 @@ dependencies = [
[[package]]
name = "epoxy-client"
version = "2.1.1"
version = "2.1.2"
dependencies = [
"async-compression",
"async-trait",

View file

@ -1,6 +1,6 @@
[package]
name = "epoxy-client"
version = "2.1.1"
version = "2.1.2"
edition = "2021"
[lib]

View file

@ -1,6 +1,6 @@
{
"name": "@mercuryworkshop/epoxy-tls",
"version": "2.1.1-1",
"version": "2.1.2-1",
"description": "A wasm library for using raw encrypted tls/ssl/tcp/udp/https/websocket streams on the browser",
"scripts": {
"build": "./build.sh"

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) {