UNPKG
@chainz/moca-binary-codec
Version:
latest (0.3.0)
0.3.0
0.2.0
moca binary codec
gitory.skcc.com/skcoin/moca-binary-codec
@chainz/moca-binary-codec
/
distrib
/
npm
/
types
/
hash-128.js
10 lines
(7 loc)
•
231 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'
),
Hash
= _require.
Hash
;
var
Hash128
=
makeClass
({
inherits
:
Hash
,
statics
: {
width
:
16
} });
module
.
exports
= {
Hash128
:
Hash128
};