UNPKG

@alicloud/console-fetcher-interceptor-res-biz

Version:
17 lines (15 loc) 423 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = getData; function getData(json, getter) { // eslint-disable-line @typescript-eslint/no-explicit-any if (typeof getter === 'function') { return getter(json); } if (typeof getter === 'string') { return json[getter]; // eslint-disable-line @typescript-eslint/no-explicit-any } return json.data; // default }