@tetcoin/util
Version:
A collection of useful utilities for @tetcoin
14 lines (11 loc) • 576 B
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
var _stripLength = _interopRequireDefault(require("./stripLength"));
// Copyright 2017-2019 @polkadot/util authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
describe('compactStripLength', () => {
it('correctly removes the length prefix', () => {
expect((0, _stripLength.default)(Uint8Array.from([2 << 2, 12, 13]))).toEqual([3, Uint8Array.from([12, 13])]);
});
});