@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
13 lines • 483 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.toString = void 0;
const TtoC_1 = require("./TtoC");
/**
* Returns a string represantation of a date-time. dd[/]mm[/]yyyy HH:mm:ss
* @return string
*/
const toString = (target, targetDate, dateDigit, hourDigit, dateFormat, timeFormat) => {
return (0, TtoC_1.TtoC)(targetDate, dateDigit, hourDigit, dateFormat, timeFormat);
};
exports.toString = toString;
//# sourceMappingURL=toString.js.map