Sha256: 478a67b43952dd7f80cfa4c3e35d3164a9632cae1782a74309bd70997387db93
Contents?: true
Size: 435 Bytes
Versions: 9
Compression:
Stored size: 435 Bytes
Contents
'use strict'; var ArrayBufferViewCore = require('../internals/array-buffer-view-core'); var aTypedArray = ArrayBufferViewCore.aTypedArray; var $join = [].join; // `%TypedArray%.prototype.join` method // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.join // eslint-disable-next-line no-unused-vars ArrayBufferViewCore.exportProto('join', function join(separator) { return $join.apply(aTypedArray(this), arguments); });
Version data entries
9 entries across 9 versions & 3 rubygems