Methodenbeschreibung:
Überprüfen Sie, ob es sich um einen gültigen Codierungsparameter handelt, und geben Sie „true“ oder „false“ zurück.
Grammatik:
Buffer.isEncoding(encoding)
Empfangsparameter:
encoding {String} Das erkannte Codierungsformat
Beispiel:
var a = Buffer.isEncoding('base64');
console.log(a);
Quellcode:
Buffer.isEncoding = function(encoding) {
switch ((encoding '').toLowerCase()) {
case 'hex':
Fall 'utf8':
Fall 'utf-8':
case 'ascii':
Fall 'binär':
Fall 'base64':
Fall 'ucs2':
Fall 'ucs-2':
Fall 'utf16le':
Fall 'utf-16le':
Fall 'raw':
return true;
Standard:
Gibt false zurück;
}
};