@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
19 lines โข 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.testCases = void 0;
// charAt test cases
exports.testCases = [
["texto", 0, ""],
["texto", -1, ""],
["texto", 100, ""],
["texto", 1, "t"],
["texto", 2, "e"],
["texto", 5, "o"],
[" ๐texto", 1, " "],
[" ๐texto", 2, "๐"],
[" ๐texto", 3, "t"],
[" ๐te xto\t\r\n ", 3, "t"],
[" ๐\tte xto\t\r\n ", 6, " "],
[" ๐\tte xto\t\r\n ", 11, "\r"]
];
//# sourceMappingURL=charat-cases.js.map