UNPKG

stratumn-sdk

Version:
11 lines (8 loc) 290 B
import { post } from './request'; import config from './config'; import linkify from './linkify'; export default function createMap(app, ...args) { const url = `${config.applicationUrl.replace('%s', app.name)}/maps`; return post(url, args) .then(res => linkify(app, res.body)); }