1.0.21 • Published 7 years ago
isi-string v1.0.21
string helpers for node.js
Methods
trim()
alias : trimChar trim(value, charToTrim)
Removes a character or string from the left and right side of a string
var isiString = require( 'isi-string' );
isiString.trim("__unformated string__", '_' );
// -> unformated string
isiString.trim(",unformated string,", ',' );
// -> unformated string
split():
split(value, charToSplit)
Splits an array and removes empty entries
var isiString = require( 'isi-string' );
isiString.split("Hello World", ' ' );
// -> ['Hello', 'World']
isiString.split("Hello,World,,,", ',' );
// -> ['Hello', 'World']
removeFromRight():
removeFromRight(value, amountToRemove)
removes characters from the right
var isiString = require( 'isi-string' );
isiString.removeFromRight("Hello World", 3 );
// -> Hello Wo
Version History:
1.0.19
- added capitalizeFirstLetter function
1.0.17
- added urlJoin method
1.0.6
- added function to remove chars from the right: removeFromRight
1.0.6
- little docu improvement
1.0.5
- trim all splitted values
1.0.21
7 years ago
1.0.20
7 years ago
1.0.19
8 years ago
1.0.18
8 years ago
1.0.17
8 years ago
1.0.16
8 years ago
1.0.15
8 years ago
1.0.14
9 years ago
1.0.13
9 years ago
1.0.12
9 years ago
1.0.11
9 years ago
1.0.10
9 years ago
1.0.9
9 years ago
1.0.8
9 years ago
1.0.7
9 years ago
1.0.6
9 years ago
1.0.5
9 years ago
1.0.4
9 years ago
1.0.3
9 years ago
1.0.2
9 years ago
1.0.1
9 years ago
1.0.0
9 years ago
0.0.2
9 years ago
0.0.1
9 years ago
0.1.1
9 years ago
0.1.0
9 years ago