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