[bun.js] Add baseURI support to HTTP server

This commit is contained in:
Jarred Sumner
2022-04-07 06:22:42 -07:00
parent b97e81b27f
commit 4e05fd0541
8 changed files with 118 additions and 15 deletions

View File

@@ -1085,7 +1085,7 @@ JSC::JSObject* GlobalObject::moduleLoaderCreateImportMetaProperties(JSGlobalObje
metaProperties->putDirect(vm, clientData->builtinNames().resolvePublicName(),
JSC::JSFunction::create(vm, JSC::jsCast<JSC::JSGlobalObject*>(globalObject), 0,
WTF::String("resolve"), functionImportMeta__resolve),
WTF::String("resolve"_s), functionImportMeta__resolve),
0);
}