flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
12
BACK_BACK/node_modules/deasync/.github/FUNDING.yml
generated
vendored
Executable file
12
BACK_BACK/node_modules/deasync/.github/FUNDING.yml
generated
vendored
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
# These are supported funding model platforms
|
||||
|
||||
github: [abbr]
|
||||
patreon: # Replace with a single Patreon username
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
liberapay: # Replace with a single Liberapay username
|
||||
issuehunt: # Replace with a single IssueHunt username
|
||||
otechie: # Replace with a single Otechie username
|
||||
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
||||
20
BACK_BACK/node_modules/deasync/.github/workflows/npm_test.yml
generated
vendored
Executable file
20
BACK_BACK/node_modules/deasync/.github/workflows/npm_test.yml
generated
vendored
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
name: npm_test
|
||||
on: [pull_request, push]
|
||||
jobs:
|
||||
npm_test:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [macos-latest, ubuntu-latest, windows-latest]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '22'
|
||||
- run: npm install
|
||||
- run: npm test
|
||||
- name: Upload bin folder
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: bin
|
||||
path: bin/
|
||||
4
BACK_BACK/node_modules/deasync/.travis.yml
generated
vendored
Executable file
4
BACK_BACK/node_modules/deasync/.travis.yml
generated
vendored
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
language: node_js
|
||||
|
||||
node_js:
|
||||
- node
|
||||
9
BACK_BACK/node_modules/deasync/LICENSE
generated
vendored
Executable file
9
BACK_BACK/node_modules/deasync/LICENSE
generated
vendored
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015-present
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
112
BACK_BACK/node_modules/deasync/README.md
generated
vendored
Executable file
112
BACK_BACK/node_modules/deasync/README.md
generated
vendored
Executable file
|
|
@ -0,0 +1,112 @@
|
|||
DeAsync.js
|
||||
=======
|
||||
[](https://www.npmjs.org/package/deasync)
|
||||
|
||||
DeAsync turns async function into sync, implemented with a blocking mechanism by calling Node.js event loop at JavaScript layer. The core of deasync is written in C++.
|
||||
|
||||
|
||||
## Motivation
|
||||
|
||||
Suppose you maintain a library that exposes a function <code>getData</code>. Your users call it to get actual data:
|
||||
<code>var myData = getData();</code>
|
||||
Under the hood data is saved in a file so you implemented <code>getData</code> using Node.js built-in <code>fs.readFileSync</code>. It's obvious both <code>getData</code> and <code>fs.readFileSync</code> are sync functions. One day you were told to switch the underlying data source to a repo such as MongoDB which can only be accessed asynchronously. You were also told for backward compatibility, <code>getData</code> API cannot be changed to return merely a promise or demand a callback parameter. How do you meet both requirements?
|
||||
|
||||
You may tempted to use [node-fibers](https://github.com/laverdet/node-fibers) or a module derived from it, but node fibers can only wrap async function call into a sync function inside a fiber. In the case above you cannot assume all callers are inside fibers. On the other hand, if you start a fiber in `getData` then `getData` itself will still return immediately without waiting for the async call result. For similar reason ES6 generators introduced in Node v0.11 won't work either.
|
||||
|
||||
What really needed is a way to block subsequent JavaScript from running without blocking entire thread by yielding to allow other events in the event loop to be handled. Ideally the blockage is removed as soon as the result of async function is available. A less ideal but often acceptable alternative is a `sleep` function which you can use to implement the blockage like ```while(!done) sleep(100);```. It is less ideal because sleep duration has to be guessed. It is important the `sleep` function not only shouldn't block entire thread, but also shouldn't incur busy wait that pegs the CPU to 100%.
|
||||
</small>
|
||||
|
||||
DeAsync supports both alternatives.
|
||||
|
||||
|
||||
|
||||
## Usages
|
||||
|
||||
|
||||
* Generic wrapper of async function with conventional API signature `function(p1,...pn,function cb(error,result){})`. Returns `result` and throws `error` as exception if not null:
|
||||
|
||||
```javascript
|
||||
var deasync = require('deasync');
|
||||
var cp = require('child_process');
|
||||
var exec = deasync(cp.exec);
|
||||
// output result of ls -la
|
||||
try{
|
||||
console.log(exec('ls -la'));
|
||||
}
|
||||
catch(err){
|
||||
console.log(err);
|
||||
}
|
||||
// done is printed last, as supposed, with cp.exec wrapped in deasync; first without.
|
||||
console.log('done');
|
||||
```
|
||||
|
||||
* For async function with unconventional API, for instance `function asyncFunction(p1,function cb(res){})`, use `loopWhile(predicateFunc)` where `predicateFunc` is a function that returns boolean loop condition
|
||||
|
||||
```javascript
|
||||
var done = false;
|
||||
var data;
|
||||
asyncFunction(p1,function cb(res){
|
||||
data = res;
|
||||
done = true;
|
||||
});
|
||||
require('deasync').loopWhile(function(){return !done;});
|
||||
// data is now populated
|
||||
```
|
||||
|
||||
* Sleep (a wrapper of setTimeout)
|
||||
|
||||
```javascript
|
||||
function SyncFunction(){
|
||||
var ret;
|
||||
setTimeout(function(){
|
||||
ret = "hello";
|
||||
},3000);
|
||||
while(ret === undefined) {
|
||||
require('deasync').sleep(100);
|
||||
}
|
||||
// returns hello with sleep; undefined without
|
||||
return ret;
|
||||
}
|
||||
```
|
||||
|
||||
## Installation
|
||||
Except on a few [ platforms + Node version combinations](https://github.com/abbr/deasync-bin) where binary distribution is included, DeAsync uses node-gyp to compile C++ source code so you may need the compilers listed in [node-gyp](https://github.com/TooTallNate/node-gyp). You may also need to [update npm's bundled node-gyp](https://github.com/TooTallNate/node-gyp/wiki/Updating-npm's-bundled-node-gyp).
|
||||
|
||||
To install, run
|
||||
|
||||
```npm install deasync```
|
||||
|
||||
|
||||
## Recommendation
|
||||
Unlike other (a)sync js packages that mostly have only syntactic impact, DeAsync also changes code execution sequence. As such, it is intended to solve niche cases like the above one. If all you are facing is syntactic problem such as callback hell, using a less drastic package implemented in pure js is recommended.
|
||||
|
||||
## Support
|
||||
Pull requests and issue reporting are welcome. For issues to be considered by maintainer
|
||||
1. they must be reproducible
|
||||
2. there must be evidence the issue is related to DeAsync
|
||||
|
||||
To that end, the issue should contain platform information, error message relevant to DeAsync, and preferably code snippet. If code snippet is supplied, it must be self-contained, i.e. independent from your runtime environment or other modules not explicitly specified via `require` in the code snippet.
|
||||
|
||||
## License
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
10
BACK_BACK/node_modules/deasync/app.code-workspace
generated
vendored
Executable file
10
BACK_BACK/node_modules/deasync/app.code-workspace
generated
vendored
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "."
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"cSpell.words": ["ldflags", "libstdc", "loongarch"]
|
||||
}
|
||||
}
|
||||
2
BACK_BACK/node_modules/deasync/bin/.gitattributes
generated
vendored
Executable file
2
BACK_BACK/node_modules/deasync/bin/.gitattributes
generated
vendored
Executable file
|
|
@ -0,0 +1,2 @@
|
|||
* text eol=lf
|
||||
*.node binary
|
||||
BIN
BACK_BACK/node_modules/deasync/bin/darwin-arm64-node-22/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-arm64-node-22/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-0.10/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-0.10/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-0.11/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-0.11/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-0.12/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-0.12/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-10/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-10/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-11/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-11/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-12/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-12/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-13/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-13/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-14/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-14/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-15/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-15/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-16/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-16/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-17/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-17/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-18/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-18/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-19/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-19/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-20/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-20/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-21/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-21/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-4/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-4/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-5/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-5/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-6/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-6/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-7/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-7/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-8/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-8/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-9/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/darwin-x64-node-9/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-0.10/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-0.10/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-0.11/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-0.11/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-0.12/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-0.12/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-10/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-10/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-4/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-4/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-5/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-5/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-6/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-6/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-7/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-7/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-8/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-8/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-9/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-ia32-node-9/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-0.10/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-0.10/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-0.11/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-0.11/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-0.12/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-0.12/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-10/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-10/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-11/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-11/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-12/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-12/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-13/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-13/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-14/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-14/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-15/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-15/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-16/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-16/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-17/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-17/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-18/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-18/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-19/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-19/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-20/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-20/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-21/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-21/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-22/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-22/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-4/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-4/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-5/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-5/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-6/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-6/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-7/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-7/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-8/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-8/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-9/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/linux-x64-node-9/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-0.10/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-0.10/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-0.11/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-0.11/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-0.12/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-0.12/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-10/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-10/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-11/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-11/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-12/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-12/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-13/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-13/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-14/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-14/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-15/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-15/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-16/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-16/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-4/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-4/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-5/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-5/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-6/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-6/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-7/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-7/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-8/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-8/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-9/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-ia32-node-9/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-0.10/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-0.10/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-0.11/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-0.11/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-0.12/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-0.12/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-10/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-10/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-11/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-11/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-12/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-12/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-13/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-13/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-14/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-14/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-15/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-15/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-16/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-16/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-17/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-17/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-18/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-18/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-19/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-19/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-20/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-20/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-21/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-21/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-22/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-22/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-4/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-4/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-5/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-5/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-6/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-6/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-7/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-7/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-8/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-8/deasync.node
generated
vendored
Executable file
Binary file not shown.
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-9/deasync.node
generated
vendored
Executable file
BIN
BACK_BACK/node_modules/deasync/bin/win32-x64-node-9/deasync.node
generated
vendored
Executable file
Binary file not shown.
39
BACK_BACK/node_modules/deasync/binding.gyp
generated
vendored
Executable file
39
BACK_BACK/node_modules/deasync/binding.gyp
generated
vendored
Executable file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"targets": [
|
||||
{
|
||||
"target_name": "deasync",
|
||||
"cflags!": [
|
||||
"-fno-exceptions"
|
||||
],
|
||||
"cflags_cc!": [
|
||||
"-fno-exceptions"
|
||||
],
|
||||
"xcode_settings": {
|
||||
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
|
||||
"CLANG_CXX_LIBRARY": "libc++",
|
||||
"MACOSX_DEPLOYMENT_TARGET": "10.7"
|
||||
},
|
||||
"msvs_settings": {
|
||||
"VCCLCompilerTool": {
|
||||
"ExceptionHandling": 1
|
||||
}
|
||||
},
|
||||
"sources": [
|
||||
"src/deasync.cc"
|
||||
],
|
||||
"include_dirs": [
|
||||
"<!@(node -p \"require('node-addon-api').include.replace(/\\\s/g, \\\"\\\\\\\\\\\\\\\ \\\")\")"
|
||||
],
|
||||
"conditions": [
|
||||
[
|
||||
"OS=='linux'",
|
||||
{
|
||||
"ldflags": [
|
||||
# "-static-libstdc++",
|
||||
]
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue