Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
.bin
/
Filename :
brandable_css
back
Copy
#!/usr/bin/env node // without this, node only uses 4 of the available cores on my MacBookPro // see: http://www.future-processing.pl/blog/on-problems-with-threads-in-node-js/ process.env.UV_THREADPOOL_SIZE = process.env.UV_THREADPOOL_SIZE || Math.max(require('os').cpus().length, 4) const debug = require('debug')('brandable_css') debug("UV_THREADPOOL_SIZE is", process.env.UV_THREADPOOL_SIZE) if (parseFloat(process.versions.node) >= 7.6) { debug('detected node 7.6+, which supports async/await natively, using un-babelized src') require('../src/cli') } else { debug('using babel generated fallback for async/await in ../lib, use node 7.6 or newer for native support') require('../lib/cli') }