mechanical-tolerance-calculator 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +3 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -493,7 +493,9 @@ function validateMeasurements(measurements) {
493
493
  };
494
494
  }
495
495
 
496
- measurements.forEach((a) => validateMeasurement(a));
496
+ measurements.forEach((a) => {
497
+ return validateMeasurement(a);
498
+ });
497
499
  return null;
498
500
  }
499
501
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mechanical-tolerance-calculator",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Calculates international standard specification and tolerances for bores, round bars and metals of mechanical units. For examples; H7, H8, H9, h8, h9 specifications and IT5/IT6 tolerances.",
5
5
  "main": "index.js",
6
6
  "scripts": {