UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

8 lines 171 B
/** * Converts the given boolean value to string * @param b */ export const toString = (b) => { return b ? "true" : "false"; }; //# sourceMappingURL=toString.js.map