Sha256: 86d7cea8a1edf83f7783939871465cd6018aad729baf1e9c9020df95c219ce42

Contents?: true

Size: 346 Bytes

Versions: 46

Compression:

Stored size: 346 Bytes

Contents

"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);
};

Version data entries

46 entries across 46 versions & 2 rubygems

Version Path
appmap-0.66.1 ./node_modules/jsdom/lib/jsdom/living/helpers/json.js
appmap-0.66.0 ./node_modules/jsdom/lib/jsdom/living/helpers/json.js
appmap-0.65.1 ./node_modules/jsdom/lib/jsdom/living/helpers/json.js
appmap-0.65.0 ./node_modules/jsdom/lib/jsdom/living/helpers/json.js
appmap-0.64.0 ./node_modules/jsdom/lib/jsdom/living/helpers/json.js
appmap-0.63.0 ./node_modules/jsdom/lib/jsdom/living/helpers/json.js