Sha256: 7bd1cee8c255e360670207480fb9178e53756e176becd77d4f9d6d9bcffe02f7

Contents?: true

Size: 699 Bytes

Versions: 9

Compression:

Stored size: 699 Bytes

Contents

'use strict';
var global = require('../internals/global');
var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
var fails = require('../internals/fails');

var Uint8Array = global.Uint8Array;
var Uint8ArrayPrototype = Uint8Array && Uint8Array.prototype;
var arrayToString = [].toString;
var arrayJoin = [].join;

if (fails(function () { arrayToString.call({}); })) {
  arrayToString = function toString() {
    return arrayJoin.call(this);
  };
}

// `%TypedArray%.prototype.toString` method
// https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.tostring
ArrayBufferViewCore.exportProto('toString', arrayToString, (Uint8ArrayPrototype || {}).toString != arrayToString);

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
disco_app-0.18.0 test/dummy/node_modules/core-js/modules/es.typed-array.to-string.js
disco_app-0.18.2 test/dummy/node_modules/core-js/modules/es.typed-array.to-string.js
jester-data-8.0.0 node_modules/core-js/modules/es.typed-array.to-string.js
ezii-os-5.2.1 node_modules/core-js/modules/es.typed-array.to-string.js
ezii-os-2.0.1 node_modules/core-js/modules/es.typed-array.to-string.js
ezii-os-1.1.0 node_modules/core-js/modules/es.typed-array.to-string.js
ezii-os-1.0.0 node_modules/core-js/modules/es.typed-array.to-string.js
ezii-os-0.0.0.1.0 node_modules/core-js/modules/es.typed-array.to-string.js
ezii-os-0.0.0.0.1 node_modules/core-js/modules/es.typed-array.to-string.js