Skip to content

da99/string_da99

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

string_da99

My helper functions for strings.

Install & Use

In your shell:

npm install string_da99

In your CoffeeScript:

Str = require 'string_da99'

"\n".is_whitespace() # ---> true
" a ".strip()        # --> "a"
"".is_empty()        # --> true
"A b c.".remove_end( '.' ) # --> "A b c"

"Shutdown the govt schools.".whitespace_split()
# -> [ "Shutdown", "the", "govt", "schools." ]

"  a\n  b\n  c".remove_indentation()
# -> "a\nb\nc"

About

Da99's helper methods for strings in javascript.

Resources

Stars

Watchers

Forks

Packages

No packages published