Version 1
[yaffs-website] / node_modules / uncss / node_modules / form-data / node_modules / lodash / _asciiToArray.js
diff --git a/node_modules/uncss/node_modules/form-data/node_modules/lodash/_asciiToArray.js b/node_modules/uncss/node_modules/form-data/node_modules/lodash/_asciiToArray.js
new file mode 100644 (file)
index 0000000..8e3dd5b
--- /dev/null
@@ -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;