UNPKG

unicode-escape

Version:

Convert a unicode string to a string of Javascript escape sequences.

6 lines (5 loc) 153 B
module.exports = function(str) { return str.replace(/./g, function(c) { return "\\u" + ('000' + c.charCodeAt(0).toString(16)).substr(-4); }); };