diff --git a/src/index.js b/src/index.js index ab14281..1e85e42 100644 --- a/src/index.js +++ b/src/index.js @@ -78,7 +78,7 @@ const FAILED_OVERALL_AREA = "overall_area"; const FAILED_FALL_HEIGHT = "fall_height"; const FAILED_NUM_RATS = "num_rats"; const FAILED_MINIMUM_LENGTH_LONG_SIDE = "length_long_side"; -const FAILED_MINIMUM_LENGTH_SHORT_SIDE= "length_short_side"; +const FAILED_MINIMUM_LENGTH_SHORT_SIDE = "length_short_side"; const FAILED_FLOOR_HEIGHT = "floor_height" @@ -154,7 +154,7 @@ class Dimensions { } static fromDict(data) { - const { width, depth, height } = data; + const {width, depth, height} = data; return new Dimensions(width, depth, height); } }