Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

textful

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

textful

A modular text formatter with simple functions.

  • 0.2.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-86.67%
Maintainers
1
Weekly downloads
 
Created
Source

TextFul

A useful and modular NPM package in formatting string literals.

Why?

It can take a lot of time to build your own functions even to convert a string to camelcase. To avoid this hectic process, textful was born.

Installation

Run this command in your terminal to install textful.

npm i textful

Usage

You can either use the cli or import textful in your file.

CLI

Run this command in your terminal and it will ask you for some input and give the output accordingly. You can even use the CLI by running npx textful

textful

In file

Convert a string to snake_case.

Javascript:

const textful = require("textful");
const textFormatter = new textful.Formatter();

console.log(textFormatter.toSnakeCase("Hello World!"));

Typescript:

import textful from "textful";
const textFormatter = new textful.Formatter();

console.log(textFormatter.toSnakeCase("Hello World!"));

Documentation

The documentation for this project is currently a work in progress and will be soon available at https://textful.aktindo.me

Support/Feature Requests

To get support, or if you are stuck somewhere, simply join our Discord server and someone will help you out.

For feature requests, open an issue on our Github Repository.

Contributing

If you feel like contributing to this project, you can make the desired changes and open a PR on our GitHub repository. We appreciate your effort in making this project a success.

Keywords

FAQs

Package last updated on 23 Apr 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc