UNPKG
bugger-v8-client
Version:
latest (4.2.0)
4.2.0
4.1.0
4.0.0
3.2.0
3.1.0
3.0.2
3.0.1
3.0.0
2.0.1
2.0.0
1.2.4
1.2.3
1.2.0
1.1.0
1.0.0
0.1.0
Client for v8 debug protocol
github.com/buggerjs/bugger-v8-client
buggerjs/bugger-v8-client
bugger-v8-client
/
lib
/
types
/
null.js
15 lines
(11 loc)
•
212 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict'
;
function
Null
(
) {
this
.
type
=
'object'
;
this
.
subtype
=
'null'
;
this
.
description
=
'null'
;
this
.
value
=
null
; }
Null
.
unmarshal
=
function
(
) {
return
new
Null
(); }
module
.
exports
=
Null
;