JSPM

@fsd24229/string-toolkit

1.1.1
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 15
    • Score
      100M100P100Q56000F
    • License MIT

    a small little library providing useful string manipulation functions

    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-toolkit

      Install via yarn:

      yarn add @fsd24229/string-toolkit

      Usage

      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.