Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
nan /
doc /
Delete
Unzip
Name
Size
Permission
Date
Action
asyncworker.md
5.23
KB
-rw-r--r--
2018-02-22 17:07
buffers.md
2.07
KB
-rw-r--r--
2017-04-05 22:07
callback.md
2.57
KB
-rw-r--r--
2018-02-22 17:07
converters.md
1.9
KB
-rw-r--r--
2017-04-05 22:07
errors.md
7.23
KB
-rw-r--r--
2017-11-06 23:36
json.md
1.9
KB
-rw-r--r--
2017-11-06 23:36
maybe_types.md
21.87
KB
-rw-r--r--
2018-03-16 15:57
methods.md
26.6
KB
-rw-r--r--
2018-08-25 12:11
new.md
4.75
KB
-rw-r--r--
2017-11-06 23:36
node_misc.md
5.57
KB
-rw-r--r--
2018-08-25 12:11
object_wrappers.md
8.03
KB
-rw-r--r--
2018-08-25 12:11
persistent.md
10.63
KB
-rw-r--r--
2018-09-29 08:02
scopes.md
2.31
KB
-rw-r--r--
2017-11-06 23:36
script.md
1.25
KB
-rw-r--r--
2017-11-06 23:36
string_bytes.md
1.86
KB
-rw-r--r--
2017-04-05 22:07
v8_internals.md
7.23
KB
-rw-r--r--
2017-11-15 11:00
v8_misc.md
2.85
KB
-rw-r--r--
2017-11-06 23:36
Save
Rename
## Strings & Bytes Miscellaneous string & byte encoding and decoding functionality provided for compatibility across supported versions of V8 and Node. Implemented by NAN to ensure that all encoding types are supported, even for older versions of Node where they are missing. - <a href="#api_nan_encoding"><b><code>Nan::Encoding</code></b></a> - <a href="#api_nan_encode"><b><code>Nan::Encode()</code></b></a> - <a href="#api_nan_decode_bytes"><b><code>Nan::DecodeBytes()</code></b></a> - <a href="#api_nan_decode_write"><b><code>Nan::DecodeWrite()</code></b></a> <a name="api_nan_encoding"></a> ### Nan::Encoding An enum representing the supported encoding types. A copy of `node::encoding` that is consistent across versions of Node. Definition: ```c++ enum Nan::Encoding { ASCII, UTF8, BASE64, UCS2, BINARY, HEX, BUFFER } ``` <a name="api_nan_encode"></a> ### Nan::Encode() A wrapper around `node::Encode()` that provides a consistent implementation across supported versions of Node. Signature: ```c++ v8::Local<v8::Value> Nan::Encode(const void *buf, size_t len, enum Nan::Encoding encoding = BINARY); ``` <a name="api_nan_decode_bytes"></a> ### Nan::DecodeBytes() A wrapper around `node::DecodeBytes()` that provides a consistent implementation across supported versions of Node. Signature: ```c++ ssize_t Nan::DecodeBytes(v8::Local<v8::Value> val, enum Nan::Encoding encoding = BINARY); ``` <a name="api_nan_decode_write"></a> ### Nan::DecodeWrite() A wrapper around `node::DecodeWrite()` that provides a consistent implementation across supported versions of Node. Signature: ```c++ ssize_t Nan::DecodeWrite(char *buf, size_t len, v8::Local<v8::Value> val, enum Nan::Encoding encoding = BINARY); ```