Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

16 wiersze
421 B

  1. const assert = require("assert");
  2. const {
  3. stringToArrayBuffer,
  4. arrayBufferToHex
  5. } = require("../src/stringEncoding");
  6. describe("stringEncoding", () => {
  7. it("stringToArrayBuffer", () => {
  8. assert.equal(stringToArrayBuffer("ȧ")[0], 200);
  9. assert.equal(stringToArrayBuffer("ȧ")[1], 167);
  10. });
  11. it("arrayBufferToHex", () => {
  12. assert.equal(arrayBufferToHex(new Uint8Array([200, 167])), "c8a7");
  13. });
  14. });