@rzl-zone/utils-js
Version:
A modern, lightweight set of JavaScript utility functions with TypeScript support for everyday development, crafted to enhance code readability and maintainability.
17 lines (14 loc) • 471 B
JavaScript
/*!
* ====================================================
* Rzl Utils-JS.
* ----------------------------------------------------
* Version: 3.11.0.
* Author: Rizalvin Dwiky.
* Repository: https://github.com/rzl-zone/utils-js.
* ====================================================
*/
import { isNonEmptyString } from './chunk-MSUW5VHZ.js';
var normalizeString = (input) => {
return isNonEmptyString(input) ? input.trim() : "";
};
export { normalizeString };