Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/charenc/charenc.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

33 lines (29 sloc)
850 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var charenc = { | |
// UTF-8 encoding | |
utf8: { | |
// Convert a string to a byte array | |
stringToBytes: function(str) { | |
return charenc.bin.stringToBytes(unescape(encodeURIComponent(str))); | |
}, | |
// Convert a byte array to a string | |
bytesToString: function(bytes) { | |
return decodeURIComponent(escape(charenc.bin.bytesToString(bytes))); | |
} | |
}, | |
// Binary encoding | |
bin: { | |
// Convert a string to a byte array | |
stringToBytes: function(str) { | |
for (var bytes = [], i = 0; i < str.length; i++) | |
bytes.push(str.charCodeAt(i) & 0xFF); | |
return bytes; | |
}, | |
// Convert a byte array to a string | |
bytesToString: function(bytes) { | |
for (var str = [], i = 0; i < bytes.length; i++) | |
str.push(String.fromCharCode(bytes[i])); | |
return str.join(''); | |
} | |
} | |
}; | |
module.exports = charenc; |