UNPKG

@seniorsistemas/tecnologia-webcomponents

Version:

A webcomponents library for Senior Sistemas - Suite BPM products.

12 lines (11 loc) 354 B
import { TecStringCase } from '../models/case.model'; export function removeStringWhiteSpace(text) { return text.replace(/\s/g, ''); } export function caseStringHandler(value, toCase) { if (toCase === TecStringCase.LOWERCASE) return value.toLowerCase(); if (toCase === TecStringCase.UPPERCASE) return value.toUpperCase(); return value; }