Consistency modifications

This commit is contained in:
n1474335 2017-05-02 22:53:57 +01:00
parent d3377d56b4
commit 463b06f508
2 changed files with 3 additions and 2 deletions

View File

@ -11,10 +11,10 @@ import Utils from "./Utils.js";
* @param {byteArray|string|number} value - The value of the input data.
* @param {number} type - The data type of value, see Dish enums.
*/
function Dish(value, type) {
const Dish = function(value, type) {
this.value = value || typeof value == "string" ? value : null;
this.type = type || Dish.BYTE_ARRAY;
}
};
/**

View File

@ -64,6 +64,7 @@ Ingredient.prototype.setValue = function(value) {
*/
Ingredient.prepare = function(data, type) {
let number;
switch (type) {
case "binaryString":
case "binaryShortString":