Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
devtools
/
node_modules
/
lodash
/
_asciiToArray.js
blob: 8e3dd5b47fef4505602fb97e8882709929b2bd39 [
file
] [
log
] [
blame
]
/**
* 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
;