UNPKG

435 BJavaScriptView Raw
1'use strict';
2var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
3
4var aTypedArray = ArrayBufferViewCore.aTypedArray;
5var $join = [].join;
6
7// `%TypedArray%.prototype.join` method
8// https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.join
9// eslint-disable-next-line no-unused-vars
10ArrayBufferViewCore.exportProto('join', function join(separator) {
11 return $join.apply(aTypedArray(this), arguments);
12});