summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/join.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/strings/join.js')
-rw-r--r--node_modules/locutus/php/strings/join.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/node_modules/locutus/php/strings/join.js b/node_modules/locutus/php/strings/join.js
deleted file mode 100644
index f0e8718..0000000
--- a/node_modules/locutus/php/strings/join.js
+++ /dev/null
@@ -1,12 +0,0 @@
-'use strict';
-
-module.exports = function join(glue, pieces) {
- // discuss at: http://locutus.io/php/join/
- // original by: Kevin van Zonneveld (http://kvz.io)
- // example 1: join(' ', ['Kevin', 'van', 'Zonneveld'])
- // returns 1: 'Kevin van Zonneveld'
-
- var implode = require('../strings/implode');
- return implode(glue, pieces);
-};
-//# sourceMappingURL=join.js.map \ No newline at end of file