Sha256: 202817d7cec0944807fb2ae3a85cdf6103943cd23a4afdd256177c83eacf1296
Contents?: true
Size: 257 Bytes
Versions: 274
Compression:
Stored size: 257 Bytes
Contents
/** * 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;
Version data entries
274 entries across 272 versions & 30 rubygems