vault/ui/app/utils/validators.js
Jordan Reimer 483ef19946
Eslint prefer-const (#17864)
* adds prefer-const to eslint config and runs fixer

* reverts unintended change
2022-11-09 15:15:31 -08:00

29 lines
942 B
JavaScript

import { isPresent } from '@ember/utils';
export const presence = (value) => isPresent(value);
export const length = (value, { nullable = false, min, max } = {}) => {
if (!min && !max) return;
// value could be an integer if the attr has a default value of some number
const valueLength = value?.toString().length;
if (valueLength) {
const underMin = min && valueLength < min;
const overMax = max && valueLength > max;
return underMin || overMax ? false : true;
}
return nullable;
};
export const number = (value, { nullable = false } = {}) => {
// since 0 is falsy, !value returns true even though 0 is a valid number
if (!value && value !== 0) return nullable;
return !isNaN(value);
};
export const containsWhiteSpace = (value) => {
const validation = new RegExp('\\s', 'g'); // search for whitespace
return !validation.test(value);
};
export default { presence, length, number, containsWhiteSpace };