Merge branch 'improve_fetch' into audit_dups

This commit is contained in:
2026-02-20 14:43:26 -06:00
8 changed files with 283 additions and 86 deletions

View File

@@ -8055,6 +8055,11 @@ static JSValue js_cell_text_format (JSContext *ctx, JSValue this_val, int argc,
}
}
if (!made_substitution && JS_IsNull (cv_ref.val)) {
substitution = JS_NewString (ctx, "null");
made_substitution = 1;
}
if (!made_substitution && !JS_IsNull (cv_ref.val)) {
JSValue conv_text_val = JS_ToString (ctx, cv_ref.val);
if (JS_IsText (conv_text_val)) {