UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

12 lines 297 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.toString = void 0; /** * Converts the given boolean value to string * @param b */ const toString = (b) => { return b ? "true" : "false"; }; exports.toString = toString; //# sourceMappingURL=toString.js.map