UNPKG

aflower-cli

Version:

One flower project command line interface.

23 lines (19 loc) 387 B
/** * @fileoverview Utility for http * @author Luoob */ import { isPlainObject } from 'lodash-es' /** * Add additional parameters to the request parameters globally * @param {any} params * @returns {Object} */ export function carryParams (params: any) { if (!isPlainObject(params)) { return params } return { author: 'Luoob', ...params } }