r2-utils-js
Version:
Readium 2 'utils' for NodeJS (TypeScript)
19 lines • 642 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JsonStringConverter = void 0;
var JsonStringConverter = (function () {
function JsonStringConverter() {
}
JsonStringConverter.prototype.serialize = function (property) {
return property;
};
JsonStringConverter.prototype.deserialize = function (value) {
return value;
};
JsonStringConverter.prototype.collapseArrayWithSingleItem = function () {
return true;
};
return JsonStringConverter;
}());
exports.JsonStringConverter = JsonStringConverter;
//# sourceMappingURL=ta-json-string-converter.js.map