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]] [[package]]
name = "epoxy-client" name = "epoxy-client"
version = "2.1.1" version = "2.1.2"
dependencies = [ dependencies = [
"async-compression", "async-compression",
"async-trait", "async-trait",

View file

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

View file

@ -1,6 +1,6 @@
{ {
"name": "@mercuryworkshop/epoxy-tls", "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", "description": "A wasm library for using raw encrypted tls/ssl/tcp/udp/https/websocket streams on the browser",
"scripts": { "scripts": {
"build": "./build.sh" "build": "./build.sh"

View file

@ -195,7 +195,7 @@ export async function convert_body_inner(body) {
} }
export function entries_of_object_inner(obj) { 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) { export function define_property(obj, k, v) {