Sha256: 6260d2842f8573c9390f8e167c323221f26ec63a3e5c9ffcfc6b27451a6dc1c1
Contents?: true
Size: 691 Bytes
Versions: 69
Compression:
Stored size: 691 Bytes
Contents
define(['../lang/toString'], function(toString) { /** * Escape string into unicode sequences */ function escapeUnicode(str, shouldEscapePrintable){ str = toString(str); return str.replace(/[\s\S]/g, function(ch){ // skip printable ASCII chars if we should not escape them if (!shouldEscapePrintable && (/[\x20-\x7E]/).test(ch)) { return ch; } // we use "000" and slice(-4) for brevity, need to pad zeros, // unicode escape always have 4 chars after "\u" return '\\u'+ ('000'+ ch.charCodeAt(0).toString(16)).slice(-4); }); } return escapeUnicode; });
Version data entries
69 entries across 69 versions & 2 rubygems