add @discordjs/opus + jmd.js

This commit is contained in:
2021-04-11 12:12:39 +02:00
parent c49adbb146
commit 5c2e0737c0
977 changed files with 199471 additions and 1074 deletions

29
node_modules/node-addon-api/doc/name.md generated vendored Normal file
View File

@@ -0,0 +1,29 @@
# Name
Class `Napi::Name` inherits from class [`Napi::Value`][].
Names are JavaScript values that can be used as a property name. There are two
specialized types of names supported in Node.js Addon API [`Napi::String`](string.md)
and [`Napi::Symbol`](symbol.md).
## Methods
### Constructor
```cpp
Napi::Name::Name();
```
Returns an empty `Napi::Name`.
```cpp
Napi::Name::Name(napi_env env, napi_value value);
```
- `[in] env` - The environment in which to create the array.
- `[in] value` - The primitive to wrap.
Returns a `Napi::Name` created from the JavaScript primitive.
Note:
The value is not coerced to a string.
[`Napi::Value`]: ./value.md