0.3.1 • Published 5 years ago

@selfagencyllc/dev-tools-text v0.3.1

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

@selfagencyllc/dev-tools-text 0.3.1

Extends @selfagencyllc/dev-tools with utilities for manipulating text.

src/modules/_case.js

_case(str, fmt)

String case conversion

Formats:

  • camel: camelCase
  • pascal: PascalCase
  • kebab: kebab-case
  • snake: snake_case
  • sentence: Sentence case
  • title: Title Case
Parameters
NameTypeDescription
strstringstring to format 
fmtstringformat [camelpascalkebabsnakesentencetitle] 
Returns
  • string formatted string

src/modules/_hash.js

_hash(str, cipher)

Creates a hash from a string

Parameters
NameTypeDescription
strstringstring to hash 
cipherstringhash cipher (defaults to SHA-512) 
Returns
  • string hex of hashed string

src/modules/_md.js

_md(str, fmt)

Converts Markdown text to HTML

Parameters
NameTypeDescription
strstringstring of Markdown text 
fmtstringformat of Markdown text 
Returns
  • string string of formatted text

src/modules/_punc.js

_punc(str)

Converts ASCII punctuation

Parameters
NameTypeDescription
strstringstring of unformatted text 
Returns
  • string string of formatted text

src/modules/_trunc.js

_trunc(str, len)

Converts ASCII punctuation

Parameters
NameTypeDescription
strstringstring to truncate 
lenintlength to truncate 
Returns
  • string string of formatted text

Documentation generated with doxdox.