mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 23:57:49 +00:00
Remove semicolons.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import asciiToArray from './asciiToArray.js';
|
||||
import hasUnicode from './hasUnicode.js';
|
||||
import unicodeToArray from './unicodeToArray.js';
|
||||
import asciiToArray from './asciiToArray.js'
|
||||
import hasUnicode from './hasUnicode.js'
|
||||
import unicodeToArray from './unicodeToArray.js'
|
||||
|
||||
/**
|
||||
* Converts `string` to an array.
|
||||
@@ -12,7 +12,7 @@ import unicodeToArray from './unicodeToArray.js';
|
||||
function stringToArray(string) {
|
||||
return hasUnicode(string)
|
||||
? unicodeToArray(string)
|
||||
: asciiToArray(string);
|
||||
: asciiToArray(string)
|
||||
}
|
||||
|
||||
export default stringToArray;
|
||||
export default stringToArray
|
||||
|
||||
Reference in New Issue
Block a user