/** * @author d98762625 [d98762625@gmail.com] * @copyright Crown Copyright 2019 * @license Apache-2.0 */ import DishType from "./DishType.mjs"; import Utils from "../Utils.mjs"; /** * Translation methods for JSON dishes */ class DishJSON extends DishType { /** * convert the given value to a ArrayBuffer */ static toArrayBuffer() { DishJSON.checkForValue(this.value); this.value = this.value !== undefined ? Utils.strToArrayBuffer(JSON.stringify(this.value, null, 4)) : new ArrayBuffer; } /** * convert the given value from a ArrayBuffer * @param {boolean} notUTF8 */ static fromArrayBuffer(notUTF8) { DishJSON.checkForValue(this.value); this.value = JSON.parse(Utils.arrayBufferToStr(this.value, !notUTF8)); } } export default DishJSON;