summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/explode.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/explode.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/strings/explode.js')
-rw-r--r--node_modules/locutus/php/strings/explode.js53
1 files changed, 53 insertions, 0 deletions
diff --git a/node_modules/locutus/php/strings/explode.js b/node_modules/locutus/php/strings/explode.js
new file mode 100644
index 0000000..d9bbd9e
--- /dev/null
+++ b/node_modules/locutus/php/strings/explode.js
@@ -0,0 +1,53 @@
+'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 explode(delimiter, string, limit) {
+ // discuss at: http://locutus.io/php/explode/
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // example 1: explode(' ', 'Kevin van Zonneveld')
+ // returns 1: [ 'Kevin', 'van', 'Zonneveld' ]
+
+ if (arguments.length < 2 || typeof delimiter === 'undefined' || typeof string === 'undefined') {
+ return null;
+ }
+ if (delimiter === '' || delimiter === false || delimiter === null) {
+ return false;
+ }
+ if (typeof delimiter === 'function' || (typeof delimiter === 'undefined' ? 'undefined' : _typeof(delimiter)) === 'object' || typeof string === 'function' || (typeof string === 'undefined' ? 'undefined' : _typeof(string)) === 'object') {
+ return {
+ 0: ''
+ };
+ }
+ if (delimiter === true) {
+ delimiter = '1';
+ }
+
+ // Here we go...
+ delimiter += '';
+ string += '';
+
+ var s = string.split(delimiter);
+
+ if (typeof limit === 'undefined') return s;
+
+ // Support for limit
+ if (limit === 0) limit = 1;
+
+ // Positive limit
+ if (limit > 0) {
+ if (limit >= s.length) {
+ return s;
+ }
+ return s.slice(0, limit - 1).concat([s.slice(limit - 1).join(delimiter)]);
+ }
+
+ // Negative limit
+ if (-limit >= s.length) {
+ return [];
+ }
+
+ s.splice(s.length + limit);
+ return s;
+};
+//# sourceMappingURL=explode.js.map \ No newline at end of file