@pforth/strfuncs
v1.0.1
Published
startsWith, endsWith, iStartsWith, iEndsWith, getBetween
Downloads
1
Readme
This module adds 5 prototypes to the javascript String object...
Usage
require("@pforth/strfuncs");
var str="adfsasdfasf";
str.startsWith("a");
str.endsWith("aasdf");
str.iStartsWith("a");
str.iEndsWith("a");
str.getBetween("fs", "df");