aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/lodash/_stringToArray.js
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/_stringToArray.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/lodash/_stringToArray.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/_stringToArray.js b/sandbox/testAppNevena/Front/node_modules/lodash/_stringToArray.js
deleted file mode 100644
index d161158c..00000000
--- a/sandbox/testAppNevena/Front/node_modules/lodash/_stringToArray.js
+++ /dev/null
@@ -1,18 +0,0 @@
-var asciiToArray = require('./_asciiToArray'),
- hasUnicode = require('./_hasUnicode'),
- unicodeToArray = require('./_unicodeToArray');
-
-/**
- * Converts `string` to an array.
- *
- * @private
- * @param {string} string The string to convert.
- * @returns {Array} Returns the converted array.
- */
-function stringToArray(string) {
- return hasUnicode(string)
- ? unicodeToArray(string)
- : asciiToArray(string);
-}
-
-module.exports = stringToArray;