map.js 231 B

123456789
  1. var makeString = require('./helper/makeString');
  2. module.exports = function(str, callback) {
  3. str = makeString(str);
  4. if (str.length === 0 || typeof callback !== 'function') return str;
  5. return str.replace(/./g, callback);
  6. };