apply suggestion and fix bug

This commit is contained in:
Nuckyz 2024-08-18 17:00:34 -03:00
parent 3546632bbf
commit 5c7773c7bb
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9
2 changed files with 2 additions and 4 deletions

View file

@ -23,9 +23,7 @@ if (IS_DEV || IS_REPORTER) {
var logger = new Logger("Tracer", "#FFD166");
}
const Noop = () => { };
export const beginTrace = !(IS_DEV || IS_REPORTER) ? Noop :
export const beginTrace = !(IS_DEV || IS_REPORTER) ? () => { } :
function beginTrace(name: string, ...args: any[]) {
if (name in traces) {
throw new Error(`Trace ${name} already exists!`);

View file

@ -115,7 +115,7 @@ export function proxyInner<T = any>(
// Avoid binding toString if the inner value is null.
// This can happen if we are setting the inner value as another instance of proxyInner, which will cause that proxy to instantly evaluate and throw an error
if (typeof innerValue === "function" && innerValue[SYM_PROXY_INNER_VALUE] == null) {
if (typeof innerValue === "function" && innerValue[SYM_PROXY_INNER_VALUE] != null) {
proxy.toString = innerValue.toString.bind(innerValue);
}
}