You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
499 B
13 lines
499 B
'use strict';
|
|
var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
|
|
|
|
var aTypedArray = ArrayBufferViewCore.aTypedArray;
|
|
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
|
|
var $join = [].join;
|
|
|
|
// `%TypedArray%.prototype.join` method
|
|
// https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.join
|
|
// eslint-disable-next-line no-unused-vars
|
|
exportTypedArrayMethod('join', function join(separator) {
|
|
return $join.apply(aTypedArray(this), arguments);
|
|
});
|
|
|