remove isa

This commit is contained in:
2026-01-06 11:17:07 -06:00
parent 63cf76dcf9
commit dd309b1a37
10 changed files with 43 additions and 78 deletions

View File

@@ -418,9 +418,9 @@ function handle_actor_message(msg) {
var duration_ns = number.round((end_time - base_entry.start_time) * 1000000000)
var results = []
if (isa(msg, array)) {
if (is_array(msg)) {
results = msg
} else if (msg && isa(msg.results, array)) {
} else if (msg && is_array(msg.results)) {
results = msg.results
} else {
results = [msg]