wpt-api-client
Version:
Unofficial Node.js client for the WebPageTest REST API
38 lines • 1.71 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.makeLocations = void 0;
const phin_1 = __importDefault(require("phin"));
const utils_1 = require("./utils");
const error_1 = require("./error");
/**
* Create function to call the /getLocations.php endpoint.
*
* https://webpagetest.org/getLocations.php?f=html
*/
const makeLocations = (wptServer) => {
const endpoint = `${utils_1.baseUrl(wptServer)}/getLocations.php`;
return function locations() {
return __awaiter(this, void 0, void 0, function* () {
const response = yield phin_1.default({
url: `${endpoint}?f=json`,
parse: 'json'
});
error_1.throwIfNotSuccess(response.body);
return response.body.data;
});
};
};
exports.makeLocations = makeLocations;
//# sourceMappingURL=locations.js.map