UNPKG

moysklad

Version:

Библиотека для работы с API сервиса МойСклад

32 lines (26 loc) 665 B
'use strict' const have = require('../have') module.exports = function POST(...args) { // TODO Test payload: 'Object or Object arr' const { path, payload, query, options = {} } = have.strict(args, [ { path: 'str or str arr', payload: 'opt Object or Object arr or str', query: 'opt Object', options: 'opt Object' }, have.argumentsObject ]) const url = this.buildUrl(path, query) const fetchOptions = { method: 'POST' } if (payload) { fetchOptions.body = typeof payload === 'string' ? payload : JSON.stringify(payload) } return this.fetchUrl(url, { ...options, ...fetchOptions }) }