UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

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