From 954583f3d56fbfb60321725f13ad092e536e3737 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 7 Nov 2018 22:10:16 +0100 Subject: Removed node_modules --- node_modules/locutus/python/string/capwords.js | 21 --------------------- node_modules/locutus/python/string/capwords.js.map | 1 - node_modules/locutus/python/string/index.js | 4 ---- node_modules/locutus/python/string/index.js.map | 1 - 4 files changed, 27 deletions(-) delete mode 100644 node_modules/locutus/python/string/capwords.js delete mode 100644 node_modules/locutus/python/string/capwords.js.map delete mode 100644 node_modules/locutus/python/string/index.js delete mode 100644 node_modules/locutus/python/string/index.js.map (limited to 'node_modules/locutus/python/string') diff --git a/node_modules/locutus/python/string/capwords.js b/node_modules/locutus/python/string/capwords.js deleted file mode 100644 index ddd855a..0000000 --- a/node_modules/locutus/python/string/capwords.js +++ /dev/null @@ -1,21 +0,0 @@ -'use strict'; - -module.exports = function capwords(str) { - // discuss at: http://locutus.io/python/capwords/ - // original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com) - // improved by: Waldo Malqui Silva (http://waldo.malqui.info) - // improved by: Robin - // improved by: Kevin van Zonneveld (http://kvz.io) - // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) - // input by: James (http://www.james-bell.co.uk/) - // example 1: capwords('kevin van zonneveld') - // returns 1: 'Kevin Van Zonneveld' - // example 2: capwords('HELLO WORLD') - // returns 2: 'HELLO WORLD' - - var pattern = /^([a-z\u00E0-\u00FC])|\s+([a-z\u00E0-\u00FC])/g; - return (str + '').replace(pattern, function ($1) { - return $1.toUpperCase(); - }); -}; -//# sourceMappingURL=capwords.js.map \ No newline at end of file diff --git a/node_modules/locutus/python/string/capwords.js.map b/node_modules/locutus/python/string/capwords.js.map deleted file mode 100644 index ad1ea35..0000000 --- a/node_modules/locutus/python/string/capwords.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/python/string/capwords.js"],"names":["module","exports","capwords","str","pattern","replace","$1","toUpperCase"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,QAAT,CAAmBC,GAAnB,EAAwB;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,UAAU,gDAAd;AACA,SAAO,CAACD,MAAM,EAAP,EAAWE,OAAX,CAAmBD,OAAnB,EAA4B,UAAUE,EAAV,EAAc;AAC/C,WAAOA,GAAGC,WAAH,EAAP;AACD,GAFM,CAAP;AAGD,CAjBD","file":"capwords.js","sourcesContent":["module.exports = function capwords (str) {\n // discuss at: http://locutus.io/python/capwords/\n // original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)\n // improved by: Waldo Malqui Silva (http://waldo.malqui.info)\n // improved by: Robin\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)\n // input by: James (http://www.james-bell.co.uk/)\n // example 1: capwords('kevin van zonneveld')\n // returns 1: 'Kevin Van Zonneveld'\n // example 2: capwords('HELLO WORLD')\n // returns 2: 'HELLO WORLD'\n\n var pattern = /^([a-z\\u00E0-\\u00FC])|\\s+([a-z\\u00E0-\\u00FC])/g\n return (str + '').replace(pattern, function ($1) {\n return $1.toUpperCase()\n })\n}\n"]} \ No newline at end of file diff --git a/node_modules/locutus/python/string/index.js b/node_modules/locutus/python/string/index.js deleted file mode 100644 index 0a1885d..0000000 --- a/node_modules/locutus/python/string/index.js +++ /dev/null @@ -1,4 +0,0 @@ -'use strict'; - -module.exports['capwords'] = require('./capwords'); -//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/node_modules/locutus/python/string/index.js.map b/node_modules/locutus/python/string/index.js.map deleted file mode 100644 index ca77bd4..0000000 --- a/node_modules/locutus/python/string/index.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/python/string/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,UAAf,IAA6BC,QAAQ,YAAR,CAA7B","file":"index.js","sourcesContent":["module.exports['capwords'] = require('./capwords')\n"]} \ No newline at end of file -- cgit v1.2.3