asciidoctor-kroki
Version:
Asciidoctor extension to convert diagrams to images using Kroki
11 lines (8 loc) • 361 B
JavaScript
/* global XMLHttpRequest */
const httpClient = require('./http-client.js')
const httpPost = (uri, body, headers, encoding = 'utf8') => httpClient.post(XMLHttpRequest, uri, body, headers, encoding)
const httpGet = (uri, headers, encoding = 'utf8') => httpClient.get(XMLHttpRequest, uri, headers, encoding)
module.exports = {
get: httpGet,
post: httpPost
}