Files
30-seconds-of-code/snippets/byteSize.md
Rohit Tanwar ea4c764eaf add byteSize
2017-12-29 18:00:34 +05:30

181 B

byteSize

Returns the length of string.

const byteSize = (str) => {
  return new Blob([str]).size;
}
byteSize("😀"); // 4
byteSize("Hello World"); // 11