UNPKG

polish-validators

Version:

A set of validator functions that check common polish numbers.

10 lines (9 loc) 286 B
export function removeWhitespace(value) { return value.replace(/\s/g, ''); } export function removeDashesAndWhitespace(value) { return value.replace(/[-\s]/g, ''); } export function removeDashesSlashesAndWhitespace(value) { return value.replace(/[-/\\\s]/g, ''); }