@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
13 lines • 349 B
JavaScript
;
/**
* Return the specified character expression in uppercase letters.
* @param {string} value
* @return string
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.toUpper = void 0;
const toUpper = (target) => {
return target.toUpperCase();
};
exports.toUpper = toUpper;
//# sourceMappingURL=toUpper.js.map