var unicodeToChar = function()

in assets/themes/zeppelin/js/medium.controller.js [11:16]


  var unicodeToChar = function (text) {
    return text.replace(/\&#x[\dA-F]{4}/gi,
      function (match) {
        return String.fromCharCode(parseInt(match.replace(/\\u/g, ''), 16));
      })
  }