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
/
uint-32.js
10 lines
(7 loc)
•
227 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
(
'./uint'
),
UInt
= _require.
UInt
;
var
UInt32
=
makeClass
({
inherits
:
UInt
,
statics
: {
width
:
4
} });
module
.
exports
= {
UInt32
:
UInt32
};