jsmodern
Version:
An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.
19 lines • 751 B
JavaScript
export * from './string/capitalize.js';
export * from './string/contains.js';
export * from './string/first-index.js';
export * from './string/first-item.js';
export * from './string/insert.js';
export * from './string/is-empty.js';
export * from './string/is-string.js';
export * from './string/last-index.js';
export * from './string/last-item.js';
export * from './string/len.js';
export * from './string/lines.js';
export * from './string/retain.js';
export * from './string/split-whitespace.js';
export * from './string/to-camel-case.js';
export * from './string/to-kebab-case.js';
export * from './string/to-pascal-case.js';
export * from './string/to-snake-case.js';
export * from './string/to-start-case.js';
//# sourceMappingURL=string.js.map