str.map()
string mapped into an array.
// ⭐️ string.map()
String.prototype.map = function (mapf) {
return Array.prototype.map.call(this, mapf);
};
// mapString(str, mapf)
export function mapString(str, mapf){
return Array.prototype.map.call(str, mapf);
};