fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit c71b616f60 - Show all commits

View file

@ -264,7 +264,7 @@ export class GBVMService extends GBService {
// Defines local utility BASIC functions.
const ubound = (gbarray) => {return gbarray.length - 1};
const ubound = (gbarray) => {return gbarray ? gbarray.length - 1: 0};
const isarray = (gbarray) => {return Array.isArray(gbarray) };
// Proxies remote functions as BASIC functions.