char.js 94 B

12345
  1. exports = function(num) {
  2. return String.fromCodePoint(num);
  3. };
  4. module.exports = exports;