Sha256: 9fdc60369c26d5735c1cdc13924c24be9e1fb0e6e88c4de0af1fc57f744e39f1

Contents?: true

Size: 320 Bytes

Versions: 46

Compression:

Stored size: 320 Bytes

Contents

"use strict";

// See https://github.com/jsdom/jsdom/pull/2743#issuecomment-562991955 for background.
exports.copyToArrayBufferInNewRealm = (nodejsBuffer, newRealm) => {
  const newAB = new newRealm.ArrayBuffer(nodejsBuffer.byteLength);
  const view = new Uint8Array(newAB);
  view.set(nodejsBuffer);
  return newAB;
};

Version data entries

46 entries across 46 versions & 2 rubygems

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