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
455 B
13 lines
455 B
|
3 years ago
|
'use strict';
|
||
|
|
var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
|
||
|
|
|
||
|
|
var aTypedArray = ArrayBufferViewCore.aTypedArray;
|
||
|
|
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
|
||
|
|
var $sort = [].sort;
|
||
|
|
|
||
|
|
// `%TypedArray%.prototype.sort` method
|
||
|
|
// https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.sort
|
||
|
|
exportTypedArrayMethod('sort', function sort(comparefn) {
|
||
|
|
return $sort.call(aTypedArray(this), comparefn);
|
||
|
|
});
|