@supidupiluki/string-toolkit

1.1.0 • Public • Published

@supidupiluki/string-toolkit

A lightweight JavaScript utility library for string manipulation.
Currently supports:

  • toSnakeCase("Hello World")"hello_world"
  • toKebabCase("Hello World")"hello-world"

Installation

Using npm:

npm install @supidupiluki/string-toolkit

Using yarn:

yarn add @supidupiluki/string-toolkit

Usage

const { toSnakeCase, toKebabCase } = require('@supidupiluki/string-toolkit');

console.log(toSnakeCase("Hello World")); // "hello_world"
console.log(toKebabCase("Hello World")); // "hello-world"

Features

  • Easy-to-use string conversion functions
  • Lightweight, no dependencies
  • Fully tested with Jest

Contributing

We welcome contributions!
Please read the CONTRIBUTING.md for details.


Security

Found a security issue?
Please see SECURITY.md for how to report it.


License

This project is licensed under the MIT License.
Please see LICENSE.md for details.


**Tipp:** Du kannst die Datei als `README.md` in deinem Projektroot ablegen – GitHub zeigt sie dann automatisch auf der Startseite deines Repositories an.

Readme

Keywords

none

Package Sidebar

Install

npm i @supidupiluki/string-toolkit

Weekly Downloads

2

Version

1.1.0

License

MIT

Unpacked Size

5.78 kB

Total Files

10

Last publish

Collaborators

  • supidupiluki