UNPKG

polygon.io

Version:

Isomorphic Javascript client for Polygon.io Stocks, Forex, and Crypto APIs

8 lines (7 loc) 460 B
"use strict"; // CF: https://polygon.io/docs/#!/Forex--Currencies/get_v1_last_quote_currencies_from_to Object.defineProperty(exports, "__esModule", { value: true }); exports.lastQuoteForCurrencyPair = void 0; const request_1 = require("../transport/request"); const lastQuoteForCurrencyPair = (apiKey, apiBase, from, to) => request_1.get(`/v1/last_quote/currencies/${from}/${to}`, apiKey, apiBase); exports.lastQuoteForCurrencyPair = lastQuoteForCurrencyPair;