summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/chunk_split.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/strings/chunk_split.js')
-rw-r--r--node_modules/locutus/php/strings/chunk_split.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/node_modules/locutus/php/strings/chunk_split.js b/node_modules/locutus/php/strings/chunk_split.js
deleted file mode 100644
index 24f6e00..0000000
--- a/node_modules/locutus/php/strings/chunk_split.js
+++ /dev/null
@@ -1,24 +0,0 @@
-'use strict';
-
-module.exports = function chunk_split(body, chunklen, end) {
- // eslint-disable-line camelcase
- // discuss at: http://locutus.io/php/chunk_split/
- // original by: Paulo Freitas
- // input by: Brett Zamir (http://brett-zamir.me)
- // bugfixed by: Kevin van Zonneveld (http://kvz.io)
- // improved by: Theriault (https://github.com/Theriault)
- // example 1: chunk_split('Hello world!', 1, '*')
- // returns 1: 'H*e*l*l*o* *w*o*r*l*d*!*'
- // example 2: chunk_split('Hello world!', 10, '*')
- // returns 2: 'Hello worl*d!*'
-
- chunklen = parseInt(chunklen, 10) || 76;
- end = end || '\r\n';
-
- if (chunklen < 1) {
- return false;
- }
-
- return body.match(new RegExp('.{0,' + chunklen + '}', 'g')).join(end);
-};
-//# sourceMappingURL=chunk_split.js.map \ No newline at end of file