@snabcentr/client-ui 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -339,6 +339,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
339
339
|
*/
|
340
340
|
function stepValidator(step, precision = 3) {
|
341
341
|
return ({ value }) => {
|
342
|
+
if (!step) {
|
343
|
+
return null;
|
344
|
+
}
|
342
345
|
if (value) {
|
343
346
|
return Number((value / step).toFixed(precision)) % 1 !== 0 ? { error: `Число не кратно ${step}` } : null;
|
344
347
|
}
|