chr - nodef/extra-string GitHub Wiki

Return a string of one character whose ASCII code is the integer.

var chr = require('@extra-string/chr');

chr(65); // 'A'
chr(97); // 'a'

extra-string