UNPKG

@daysnap/utils

Version:
20 lines (16 loc) 438 B
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/stringTrim.ts function stringTrim(str, type = 1) { switch (type) { case 1: return str.replace(/\s+/g, ""); case 2: return str.replace(/(^\s*)|(\s*$)/g, ""); case 3: return str.replace(/(^\s*)/g, ""); case 4: return str.replace(/(\s*$)/g, ""); default: return str; } } exports.stringTrim = stringTrim;