UNPKG

@jswork/jzyunqi-interceptors

Version:

Interceptors for jzyunqi/yw.

19 lines (18 loc) 503 B
/*! * name: @jswork/jzyunqi-interceptors * description: Interceptors for jzyunqi/yw. * homepage: https://js.work * version: 1.0.12 * date: 2025-03-01 11:46:15 * license: MIT */ import weibo2res from '@jswork/weibo2res'; import '@jswork/next-deep-each'; export default function weiboNormalize(options) { // options.data var target = options.data; if (typeof target === 'string' && target.includes('sina.com.cn')) { options.data = weibo2res(target); } return options; }