“JavaScript Get String Byte Size” Código de respuesta

JS Get String Byte Size

// JavaScript
(new Blob(['20€'])).size;		// 5

// Node js
Buffer.from('20€').length;	// 5
garzj

JavaScript Get String Byte Size

      getStringMemorySize = function( _string ) {
        "use strict";

        var codePoint
            , accum = 0
        ;

        for( var stringIndex = 0, endOfString = _string.length; stringIndex < endOfString; stringIndex++ ) {
            codePoint = _string.charCodeAt( stringIndex );

            if( codePoint < 0x100 ) {
                accum += 1;
                continue;
            }

            if( codePoint < 0x10000 ) {
                accum += 2;
                continue;
            }

            if( codePoint < 0x1000000 ) {
                accum += 3;
            } else {
                accum += 4;
            }
        }

        return accum * 2;
    }
Zany Zebra

Respuestas similares a “JavaScript Get String Byte Size”

Preguntas similares a “JavaScript Get String Byte Size”

Más respuestas relacionadas con “JavaScript Get String Byte Size” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código