@armand-veress/string-toolkit
v1.1.0
Published
A small, useful JavaScript library for string manipulation.
Downloads
206
Readme
@armand-veress/string-toolkit
A small, useful JavaScript library for string manipulation.
Context
This project was developed as part of a Continuous Integration course exercise. The goal was to demonstrate:
- Semantic Versioning
- Unit Testing with Jest
- Documentation standards (CONTRIBUTING, SECURITY, Templates)
- NPM Publishing workflow
Installation
Install using npm:
npm install @armand-veress/string-toolkitOr using yarn:
yarn add @armand-veress/string-toolkitUsage
toSnakeCase => Converts a String to snake_case
const { toSnakeCase } = require('@armand-veress/string-toolkit');
console.log(toSnakeCase("Hello World")); // Output: "hello_world"Development
To run tests:
npm test