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

string-wks

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

string-wks

Some string manipulation functions that I need to use commonly

  • 1.0.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

I created this for my personnal use, it will grow up by time :)

basic functions

capitalize capitalize first letter and lowercase others.

capitalize("HELLO WORLD!")
>  Hello world!

noSpace remove all spaces.

noSpace("Hel l o w o r l d !")
> Helloworld!

escape remove all non-alphanumeric characters.

escape("Hell_o, = W0r1d!")
> HelloW0r1d

escapeSimple remove all non-alphanumeric characters but preserv spaces.

escapeSimple("Hell_o, = W0r1d!")
> Hello W0r1d

kebab convert string to kebabCase.

kebab(" Hello world")
> hello-world

oneSpace replace multiple spaces with one space.

   oneSpace("Hello   wolrd")
   > Hello world

elaps replace spaces, breaklines and tabs with one space.

elaps("hey     this is\n	 some string")
> hey this is some string

validateURL validate a url, return false or true.

validateURL("hello.co")
validateURL("https://www.npmjs.com/")
validateURL("www.hello.co")
> true
> true
> true
validateURL("www.hello.co-m")
> false

trimTo trim a text to a specific count, takes three params, trimTo(string, count, dotsCount)

  1. string: text
  2. count: where to cut the string
  3. dotsCount (optional): add three dots at the end if string length is bigger than dotsCount, if not specified default is 100 character.

trimTo(string, count)

	trimTo("hello world", 5)
	> hello

if original string length is bigger than or equal to 9 add three dots at the end.

	 trimTo("123456789", 5, 9)	
	> 12345...
	

trimToSimple return an array with two values,

  1. first is: the trimed text .
  2. what left in the text.

can be usefull creating readmore functionality.

trimToSimple("this is some text",  10)
> [ 'this is so', 'me text' ]

Keywords

FAQs

Package last updated on 24 Nov 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