Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@fsd24229/string-toolkit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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.