summaryrefslogtreecommitdiff
path: root/node_modules/locutus/golang/strings
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/golang/strings')
-rw-r--r--node_modules/locutus/golang/strings/Contains.js11
-rw-r--r--node_modules/locutus/golang/strings/Contains.js.map1
-rw-r--r--node_modules/locutus/golang/strings/Count.js35
-rw-r--r--node_modules/locutus/golang/strings/Count.js.map1
-rw-r--r--node_modules/locutus/golang/strings/Index2.js13
-rw-r--r--node_modules/locutus/golang/strings/Index2.js.map1
-rw-r--r--node_modules/locutus/golang/strings/LastIndex.js14
-rw-r--r--node_modules/locutus/golang/strings/LastIndex.js.map1
-rw-r--r--node_modules/locutus/golang/strings/index.js7
-rw-r--r--node_modules/locutus/golang/strings/index.js.map1
10 files changed, 85 insertions, 0 deletions
diff --git a/node_modules/locutus/golang/strings/Contains.js b/node_modules/locutus/golang/strings/Contains.js
new file mode 100644
index 0000000..32659c9
--- /dev/null
+++ b/node_modules/locutus/golang/strings/Contains.js
@@ -0,0 +1,11 @@
+'use strict';
+
+module.exports = function Contains(s, substr) {
+ // discuss at: http://locutus.io/golang/strings/Contains
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // example 1: Contains('Kevin', 'K')
+ // returns 1: true
+
+ return (s + '').indexOf(substr) !== -1;
+};
+//# sourceMappingURL=Contains.js.map \ No newline at end of file
diff --git a/node_modules/locutus/golang/strings/Contains.js.map b/node_modules/locutus/golang/strings/Contains.js.map
new file mode 100644
index 0000000..4807eda
--- /dev/null
+++ b/node_modules/locutus/golang/strings/Contains.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/golang/strings/Contains.js"],"names":["module","exports","Contains","s","substr","indexOf"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,QAAT,CAAmBC,CAAnB,EAAsBC,MAAtB,EAA8B;AAC7C;AACA;AACA;AACA;;AAEA,SAAO,CAACD,IAAI,EAAL,EAASE,OAAT,CAAiBD,MAAjB,MAA6B,CAAC,CAArC;AACD,CAPD","file":"Contains.js","sourcesContent":["module.exports = function Contains (s, substr) {\n // discuss at: http://locutus.io/golang/strings/Contains\n // original by: Kevin van Zonneveld (http://kvz.io)\n // example 1: Contains('Kevin', 'K')\n // returns 1: true\n\n return (s + '').indexOf(substr) !== -1\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/golang/strings/Count.js b/node_modules/locutus/golang/strings/Count.js
new file mode 100644
index 0000000..aaee645
--- /dev/null
+++ b/node_modules/locutus/golang/strings/Count.js
@@ -0,0 +1,35 @@
+'use strict';
+
+module.exports = function Count(s, sep) {
+ // discuss at: http://locutus.io/php/printf/
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // input by: GopherJS (http://www.gopherjs.org/)
+ // example 1: Count("cheese", "e")
+ // returns 1: 3
+ // example 2: Count("five", "") // before & after each rune
+ // returns 2: 5
+
+ var pos;
+ var n = 0;
+
+ if (sep.length === 0) {
+ return s.split(sep).length + 1;
+ } else if (sep.length > s.length) {
+ return 0;
+ } else if (sep.length === s.length) {
+ if (sep === s) {
+ return 1;
+ }
+ return 0;
+ }
+ while (true) {
+ pos = (s + '').indexOf(sep);
+ if (pos === -1) {
+ break;
+ }
+ n = n + 1 >> 0;
+ s = s.substring(pos + sep.length >> 0);
+ }
+ return n;
+};
+//# sourceMappingURL=Count.js.map \ No newline at end of file
diff --git a/node_modules/locutus/golang/strings/Count.js.map b/node_modules/locutus/golang/strings/Count.js.map
new file mode 100644
index 0000000..1e774ac
--- /dev/null
+++ b/node_modules/locutus/golang/strings/Count.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/golang/strings/Count.js"],"names":["module","exports","Count","s","sep","pos","n","length","split","indexOf","substring"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,CAAhB,EAAmBC,GAAnB,EAAwB;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,GAAJ;AACA,MAAIC,IAAI,CAAR;;AAEA,MAAKF,IAAIG,MAAJ,KAAe,CAApB,EAAwB;AACtB,WAAOJ,EAAEK,KAAF,CAAQJ,GAAR,EAAaG,MAAb,GAAsB,CAA7B;AACD,GAFD,MAEO,IAAIH,IAAIG,MAAJ,GAAaJ,EAAEI,MAAnB,EAA2B;AAChC,WAAO,CAAP;AACD,GAFM,MAEA,IAAKH,IAAIG,MAAJ,KAAeJ,EAAEI,MAAtB,EAA+B;AACpC,QAAIH,QAAQD,CAAZ,EAAe;AACb,aAAO,CAAP;AACD;AACD,WAAO,CAAP;AACD;AACD,SAAO,IAAP,EAAa;AACXE,UAAM,CAACF,IAAI,EAAL,EAASM,OAAT,CAAiBL,GAAjB,CAAN;AACA,QAAIC,QAAQ,CAAC,CAAb,EAAgB;AACd;AACD;AACDC,QAAIA,IAAK,CAAL,IAAW,CAAf;AACAH,QAAIA,EAAEO,SAAF,CAAaL,MAAMD,IAAIG,MAAV,IAAoB,CAAjC,CAAJ;AACD;AACD,SAAOD,CAAP;AACD,CA/BD","file":"Count.js","sourcesContent":["module.exports = function Count (s, sep) {\n // discuss at: http://locutus.io/php/printf/\n // original by: Kevin van Zonneveld (http://kvz.io)\n // input by: GopherJS (http://www.gopherjs.org/)\n // example 1: Count(\"cheese\", \"e\")\n // returns 1: 3\n // example 2: Count(\"five\", \"\") // before & after each rune\n // returns 2: 5\n\n var pos\n var n = 0\n\n if ((sep.length === 0)) {\n return s.split(sep).length + 1\n } else if (sep.length > s.length) {\n return 0\n } else if ((sep.length === s.length)) {\n if (sep === s) {\n return 1\n }\n return 0\n }\n while (true) {\n pos = (s + '').indexOf(sep)\n if (pos === -1) {\n break\n }\n n = n + (1) >> 0\n s = s.substring((pos + sep.length >> 0))\n }\n return n\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/golang/strings/Index2.js b/node_modules/locutus/golang/strings/Index2.js
new file mode 100644
index 0000000..ba24cf4
--- /dev/null
+++ b/node_modules/locutus/golang/strings/Index2.js
@@ -0,0 +1,13 @@
+'use strict';
+
+module.exports = function Index(s, sep) {
+ // discuss at: http://locutus.io/golang/strings/Index
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // example 1: Index('Kevin', 'K')
+ // returns 1: 0
+ // example 2: Index('Kevin', 'Z')
+ // returns 2: -1
+
+ return (s + '').indexOf(sep);
+};
+//# sourceMappingURL=Index2.js.map \ No newline at end of file
diff --git a/node_modules/locutus/golang/strings/Index2.js.map b/node_modules/locutus/golang/strings/Index2.js.map
new file mode 100644
index 0000000..b00e5a3
--- /dev/null
+++ b/node_modules/locutus/golang/strings/Index2.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/golang/strings/Index2.js"],"names":["module","exports","Index","s","sep","indexOf"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,CAAhB,EAAmBC,GAAnB,EAAwB;AACvC;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAO,CAACD,IAAI,EAAL,EAASE,OAAT,CAAiBD,GAAjB,CAAP;AACD,CATD","file":"Index2.js","sourcesContent":["module.exports = function Index (s, sep) {\n // discuss at: http://locutus.io/golang/strings/Index\n // original by: Kevin van Zonneveld (http://kvz.io)\n // example 1: Index('Kevin', 'K')\n // returns 1: 0\n // example 2: Index('Kevin', 'Z')\n // returns 2: -1\n\n return (s + '').indexOf(sep)\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/golang/strings/LastIndex.js b/node_modules/locutus/golang/strings/LastIndex.js
new file mode 100644
index 0000000..2d793a6
--- /dev/null
+++ b/node_modules/locutus/golang/strings/LastIndex.js
@@ -0,0 +1,14 @@
+"use strict";
+
+module.exports = function LastIndex(s, sep) {
+ // discuss at: http://locutus.io/golang/strings/LastIndex
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // input by: GopherJS (http://www.gopherjs.org/)
+ // example 1: LastIndex('go gopher', 'go')
+ // returns 1: 3
+ // example 2: LastIndex('go gopher', 'rodent')
+ // returns 2: -1
+
+ return parseInt(s.lastIndexOf(sep), 10) >> 0;
+};
+//# sourceMappingURL=LastIndex.js.map \ No newline at end of file
diff --git a/node_modules/locutus/golang/strings/LastIndex.js.map b/node_modules/locutus/golang/strings/LastIndex.js.map
new file mode 100644
index 0000000..8be0a84
--- /dev/null
+++ b/node_modules/locutus/golang/strings/LastIndex.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/golang/strings/LastIndex.js"],"names":["module","exports","LastIndex","s","sep","parseInt","lastIndexOf"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,SAAT,CAAoBC,CAApB,EAAuBC,GAAvB,EAA4B;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAOC,SAASF,EAAEG,WAAF,CAAcF,GAAd,CAAT,EAA6B,EAA7B,KAAoC,CAA3C;AACD,CAVD","file":"LastIndex.js","sourcesContent":["module.exports = function LastIndex (s, sep) {\n // discuss at: http://locutus.io/golang/strings/LastIndex\n // original by: Kevin van Zonneveld (http://kvz.io)\n // input by: GopherJS (http://www.gopherjs.org/)\n // example 1: LastIndex('go gopher', 'go')\n // returns 1: 3\n // example 2: LastIndex('go gopher', 'rodent')\n // returns 2: -1\n\n return parseInt(s.lastIndexOf(sep), 10) >> 0\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/golang/strings/index.js b/node_modules/locutus/golang/strings/index.js
new file mode 100644
index 0000000..f6afbd7
--- /dev/null
+++ b/node_modules/locutus/golang/strings/index.js
@@ -0,0 +1,7 @@
+'use strict';
+
+module.exports['Contains'] = require('./Contains');
+module.exports['Count'] = require('./Count');
+module.exports['Index'] = require('./Index2');
+module.exports['LastIndex'] = require('./LastIndex');
+//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/locutus/golang/strings/index.js.map b/node_modules/locutus/golang/strings/index.js.map
new file mode 100644
index 0000000..b8579ee
--- /dev/null
+++ b/node_modules/locutus/golang/strings/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/golang/strings/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,UAAf,IAA6BC,QAAQ,YAAR,CAA7B;AACAF,OAAOC,OAAP,CAAe,OAAf,IAA0BC,QAAQ,SAAR,CAA1B;AACAF,OAAOC,OAAP,CAAe,OAAf,IAA0BC,QAAQ,UAAR,CAA1B;AACAF,OAAOC,OAAP,CAAe,WAAf,IAA8BC,QAAQ,aAAR,CAA9B","file":"index.js","sourcesContent":["module.exports['Contains'] = require('./Contains')\nmodule.exports['Count'] = require('./Count')\nmodule.exports['Index'] = require('./Index2')\nmodule.exports['LastIndex'] = require('./LastIndex')\n"]} \ No newline at end of file