@fsd24229/string-toolkit
v1.1.1
Published
a small little library providing useful string manipulation functions
Downloads
459
Maintainers
Readme
@fsd24229/string-toolkit
Table of Contents
Installation
Install via npm:
npm install @fsd24229/string-toolkitInstall via yarn:
yarn add @fsd24229/string-toolkitUsage
Basic Usage
import {toSnakeCase, toKebabCase} from '@fsd24229/string-toolkit';
const testString = 'Hello World';
let snakeCase = toSnakeCase(testString);
let kebabCase = toKebabCase(testString);
console.log(snakeCase);
console.log(kebabCase);Examples
Contribution
Contribution are welcome! Please refer to CONTRIBUTING.md for more details.
Security
Please refer to our SECURITY.md for information about security policies, how to report vulnerabilities and our approach to handling concerns.
License
This project is licensed under the MIT License.
