aboutsummaryrefslogtreecommitdiff
path: root/node_modules/lodash/_asciiToArray.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/lodash/_asciiToArray.js')
-rw-r--r--node_modules/lodash/_asciiToArray.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/node_modules/lodash/_asciiToArray.js b/node_modules/lodash/_asciiToArray.js
new file mode 100644
index 0000000..8e3dd5b
--- /dev/null
+++ b/node_modules/lodash/_asciiToArray.js
@@ -0,0 +1,12 @@
+/**
+ * Converts an ASCII `string` to an array.
+ *
+ * @private
+ * @param {string} string The string to convert.
+ * @returns {Array} Returns the converted array.
+ */
+function asciiToArray(string) {
+ return string.split('');
+}
+
+module.exports = asciiToArray;