mirror of
https://github.com/MercuryWorkshop/epoxy-tls.git
synced 2025-05-13 14:30:02 -04:00
add return to a helper js function
This commit is contained in:
parent
8e81845069
commit
98840a0226
4 changed files with 4 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -513,7 +513,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "epoxy-client"
|
||||
version = "2.1.1"
|
||||
version = "2.1.2"
|
||||
dependencies = [
|
||||
"async-compression",
|
||||
"async-trait",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "epoxy-client"
|
||||
version = "2.1.1"
|
||||
version = "2.1.2"
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue