diff options
Diffstat (limited to 'node_modules/locutus/golang/strings/LastIndex.js.map')
-rw-r--r-- | node_modules/locutus/golang/strings/LastIndex.js.map | 1 |
1 files changed, 0 insertions, 1 deletions
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 |