remove isa
This commit is contained in:
4
test.ce
4
test.ce
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user