@polkadot/util
Version:
A collection of useful utilities for @polkadot
19 lines (18 loc) • 415 B
JavaScript
import { u8aCmp } from './cmp.js';
/**
* @name u8aSorted
* @summary Sorts an array of Uint8Arrays
* @description
* For input `UInt8Array[]` return the sorted result
* @example
* <BR>
*
* ```javascript
* import { u8aSorted} from '@polkadot/util';
*
* u8aSorted([new Uint8Array([0x69]), new Uint8Array([0x68])]); // [0x68, 0x69]
* ```
*/
export function u8aSorted(u8as) {
return u8as.sort(u8aCmp);
}