File size: 128 Bytes
bc20498 |
1 2 3 4 5 6 |
var makeString = require('./helper/makeString');
module.exports = function chars(str) {
return makeString(str).split('');
};
|
bc20498 |
1 2 3 4 5 6 |
var makeString = require('./helper/makeString');
module.exports = function chars(str) {
return makeString(str).split('');
};
|