UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

13 lines 297 B
"use strict"; /** * Retrun length of string s * @param {string} s * @return number */ Object.defineProperty(exports, "__esModule", { value: true }); exports.length = void 0; const length = (s) => { return Array.from(s).length; }; exports.length = length; //# sourceMappingURL=length.js.map