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, 0 insertions, 85 deletions
diff --git a/node_modules/locutus/golang/strings/Contains.js b/node_modules/locutus/golang/strings/Contains.js
deleted file mode 100644
index 32659c9..0000000
--- a/node_modules/locutus/golang/strings/Contains.js
+++ /dev/null
@@ -1,11 +0,0 @@
-'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
deleted file mode 100644
index 4807eda..0000000
--- a/node_modules/locutus/golang/strings/Contains.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"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
deleted file mode 100644
index aaee645..0000000
--- a/node_modules/locutus/golang/strings/Count.js
+++ /dev/null
@@ -1,35 +0,0 @@
-'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
deleted file mode 100644
index 1e774ac..0000000
--- a/node_modules/locutus/golang/strings/Count.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"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
deleted file mode 100644
index ba24cf4..0000000
--- a/node_modules/locutus/golang/strings/Index2.js
+++ /dev/null
@@ -1,13 +0,0 @@
-'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
deleted file mode 100644
index b00e5a3..0000000
--- a/node_modules/locutus/golang/strings/Index2.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"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
deleted file mode 100644
index 2d793a6..0000000
--- a/node_modules/locutus/golang/strings/LastIndex.js
+++ /dev/null
@@ -1,14 +0,0 @@
-"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
deleted file mode 100644
index 8be0a84..0000000
--- a/node_modules/locutus/golang/strings/LastIndex.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"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
deleted file mode 100644
index f6afbd7..0000000
--- a/node_modules/locutus/golang/strings/index.js
+++ /dev/null
@@ -1,7 +0,0 @@
-'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
deleted file mode 100644
index b8579ee..0000000
--- a/node_modules/locutus/golang/strings/index.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"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