mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
In a tweak commit of #12286 I accidentally eliminated the else branch ... running the slow & the fast path providing a worst of both worlds path
This commit is contained in:
parent
c555b31d40
commit
58bb63f355
1 changed files with 1 additions and 0 deletions
|
@ -858,6 +858,7 @@
|
||||||
const typedValue = valueConverter(value, opts);
|
const typedValue = valueConverter(value, opts);
|
||||||
result[typedKey] = typedValue;
|
result[typedKey] = typedValue;
|
||||||
}
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
// Slow path if Proxy (e.g: in WPT tests)
|
// Slow path if Proxy (e.g: in WPT tests)
|
||||||
const keys = ReflectOwnKeys(V);
|
const keys = ReflectOwnKeys(V);
|
||||||
|
|
Loading…
Add table
Reference in a new issue