Sha256: b60b747c84d2a1c4ec54d01735b46b2524134b043f7b7b645a347df2b9dc0ebb
Contents?: true
Size: 391 Bytes
Versions: 9
Compression:
Stored size: 391 Bytes
Contents
'use strict'; var ArrayBufferViewCore = require('../internals/array-buffer-view-core'); var aTypedArray = ArrayBufferViewCore.aTypedArray; var $sort = [].sort; // `%TypedArray%.prototype.sort` method // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.sort ArrayBufferViewCore.exportProto('sort', function sort(comparefn) { return $sort.call(aTypedArray(this), comparefn); });
Version data entries
9 entries across 9 versions & 3 rubygems