You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@supidupiluki/string-toolkit

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@supidupiluki/string-toolkit

A lightweight JavaScript utility library for string manipulation.

1.1.0
latest
Source
npmnpm
Version published
Weekly downloads
2
100%
Maintainers
1
Weekly downloads
 
Created
Source

@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.

FAQs

Package last updated on 07 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts