%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /usr/share/nodejs/jsdom/lib/jsdom/living/helpers/
Upload File :
Create Path :
Current File : //usr/share/nodejs/jsdom/lib/jsdom/living/helpers/json.js

"use strict";

// https://infra.spec.whatwg.org/#parse-json-from-bytes
exports.parseJSONFromBytes = bytes => {
  // https://encoding.spec.whatwg.org/#utf-8-decode
  if (bytes[0] === 0xEF && bytes[1] === 0xBB && bytes[2] === 0xBF) {
    bytes = bytes.subarray(3);
  }
  const jsonText = bytes.toString("utf-8");

  return JSON.parse(jsonText);
};

Zerion Mini Shell 1.0