File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 11strings.js
22==========
33
4- A flexible, Javascript string manipulation library. Contains the usual suspects and quite some handy additions.
5-
6- String.prototype is not affected by strings.js
4+ A flexible, Javascript string manipulation library. Contains the usual suspects and some handy additions.
5+
6+ ** key features:**
7+ - most methods are available both static and dynamic
8+ - most methods are chainable for the dynamic part
9+ - Strings is 1 based; [ 1] is the first character of the string, [ -1] the last
10+ - can use negative numbers in almost all methods to target from the end of the string
11+ - can target with indexes and substring arguments mixed in some methods
12+ - all methods are dynamically type checked if needed
13+ - methods should always return the expected type
14+
15+ *** String.prototype is not affected by strings.js***
716______________________________________________
817Some quick examples:
918``` javascript
You can’t perform that action at this time.
0 commit comments