FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nan/test/cpp/json-parse.cpp at main · nodejs/nan · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
nodejs
/
nan
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
529
Star
3.4k
Code
Issues
57
Pull requests
15
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
nan
/
test
/
cpp
/
json-parse.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (27 loc) · 847 Bytes
Breadcrumbs
nan
/
test
/
cpp
/
json-parse.cpp
Copy path
File metadata and controls
34 lines (27 loc) · 847 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
********************************************************************
* NAN - Native Abstractions for Node.js
*
* Copyright (c) 2018 NAN contributors
*
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
*******************************************************************
*/
#
include
<
nan.h
>
NAN_METHOD
(Parse) {
Nan::
JSON
NanJSON;
Nan::MaybeLocal<v8::String> inp = Nan::To<v8::String>(info[
0
]);
if
(!inp.
IsEmpty
()) {
Nan::MaybeLocal<v8::Value> result = NanJSON.
Parse
(
inp.
ToLocalChecked
()
);
if
(!result.
IsEmpty
()) {
info.
GetReturnValue
().
Set
(result.
ToLocalChecked
());
}
}
}
NAN_MODULE_INIT
(Init) {
Nan::Set
(target
, Nan::New<v8::String>(
"
parse
"
).
ToLocalChecked
()
,
Nan::GetFunction
(Nan::New<v8::FunctionTemplate>(Parse)).
ToLocalChecked
()
);
}
NODE_MODULE
(parse, Init)
Back
|
FazBrowse Home
|
New Git URL