UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

14 lines 320 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.rTrim = void 0; const regExp = / +$/g; /** * Trim trailing spaces only * @param {string} value * @return string */ const rTrim = (s) => { return s.replace(regExp, ""); }; exports.rTrim = rTrim; //# sourceMappingURL=rTrim.js.map