1fa1e7bb1aef34ff1e72b089bc63a2ed0b41de7b8803fad208e0f605e98ba0b45cc1e48fd50ec42f287fedf22f170a18a6341cbf78edd24bbb4095c4758dad 521 B

12345678910111213
  1. 'use strict';
  2. var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
  3. var uncurryThis = require('../internals/function-uncurry-this');
  4. var aTypedArray = ArrayBufferViewCore.aTypedArray;
  5. var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
  6. var $join = uncurryThis([].join);
  7. // `%TypedArray%.prototype.join` method
  8. // https://tc39.es/ecma262/#sec-%typedarray%.prototype.join
  9. exportTypedArrayMethod('join', function join(separator) {
  10. return $join(aTypedArray(this), separator);
  11. });