summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/implode.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 18:02:36 +0100
committerMarvin Borner2018-11-07 18:02:36 +0100
commit824a2d9f587ca017fc71b84d835e72f54f9c87c4 (patch)
tree765267ea4686f752aad1f69930cfee5680cc494a /node_modules/locutus/php/strings/implode.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/strings/implode.js')
-rw-r--r--node_modules/locutus/php/strings/implode.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/node_modules/locutus/php/strings/implode.js b/node_modules/locutus/php/strings/implode.js
new file mode 100644
index 0000000..3bbcae3
--- /dev/null
+++ b/node_modules/locutus/php/strings/implode.js
@@ -0,0 +1,38 @@
+'use strict';
+
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
+
+module.exports = function implode(glue, pieces) {
+ // discuss at: http://locutus.io/php/implode/
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: Waldo Malqui Silva (http://waldo.malqui.info)
+ // improved by: Itsacon (http://www.itsacon.net/)
+ // bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // example 1: implode(' ', ['Kevin', 'van', 'Zonneveld'])
+ // returns 1: 'Kevin van Zonneveld'
+ // example 2: implode(' ', {first:'Kevin', last: 'van Zonneveld'})
+ // returns 2: 'Kevin van Zonneveld'
+
+ var i = '';
+ var retVal = '';
+ var tGlue = '';
+
+ if (arguments.length === 1) {
+ pieces = glue;
+ glue = '';
+ }
+
+ if ((typeof pieces === 'undefined' ? 'undefined' : _typeof(pieces)) === 'object') {
+ if (Object.prototype.toString.call(pieces) === '[object Array]') {
+ return pieces.join(glue);
+ }
+ for (i in pieces) {
+ retVal += tGlue + pieces[i];
+ tGlue = glue;
+ }
+ return retVal;
+ }
+
+ return pieces;
+};
+//# sourceMappingURL=implode.js.map \ No newline at end of file