stringx-js
Version:
A comprehensive JavaScript library for string, number, and array manipulation inspired by Laravel. Includes 95+ string methods, 25+ number formatters, and 60 array utilities with fluent chaining, dot notation, and TypeScript support.
17 lines (14 loc) • 402 B
TypeScript
/**
* StringX-JS - Main Type Definitions
* A comprehensive JavaScript string and array manipulation library inspired by Laravel's helpers
*
* @version 1.1.3
* @author Ayman Atmeh
* @license MIT
*/
import Str from './src/Str';
import Number from './src/Number';
import Arr from './src/Arr';
import { Stringable } from './src/Stringable';
export { Stringable, Number, Arr };
export default Str;