UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

9 lines 177 B
/** * Retrun length of string s * @param {string} s * @return number */ export const length = (s) => { return Array.from(s).length; }; //# sourceMappingURL=length.js.map