amourlinguini
Version:
A JSON-based translation file manager.
22 lines • 668 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Utils = void 0;
var utils_1 = require("./utils/");
var Utils = /** @class */ (function () {
function Utils() {
}
/**
* Joins a string array into a string. Useful for custom Type Mappers.
*
* @param input - The string array (or string) to join.
* @param separator - A separator string to place between items.
*
* @returns The joined string.
*/
Utils.join = function (input, separator) {
return utils_1.StringUtils.join(input, separator);
};
return Utils;
}());
exports.Utils = Utils;
//# sourceMappingURL=utils.js.map