UNPKG

642 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.JsonStringConverter = void 0;
4var JsonStringConverter = (function () {
5 function JsonStringConverter() {
6 }
7 JsonStringConverter.prototype.serialize = function (property) {
8 return property;
9 };
10 JsonStringConverter.prototype.deserialize = function (value) {
11 return value;
12 };
13 JsonStringConverter.prototype.collapseArrayWithSingleItem = function () {
14 return true;
15 };
16 return JsonStringConverter;
17}());
18exports.JsonStringConverter = JsonStringConverter;
19//# sourceMappingURL=ta-json-string-converter.js.map
\No newline at end of file