UNPKG
zc-ripple-binary-codec
Version:
latest (0.1.10)
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
ripple binary codec
github.com/ripple/ripple-binary-codec
ripple/ripple-binary-codec
zc-ripple-binary-codec
/
src
/
types
/
hash-128.js
10 lines
(7 loc)
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
var
makeClass =
require
(
'../utils/make-class'
);
var
_require =
require
(
'./hash'
);
var
Hash
= _require.
Hash
;
var
Hash128
=
makeClass
({
inherits
:
Hash
,
statics
: {
width
:
16
} });
module
.
exports
= {
Hash128
:
Hash128
};