UNPKG

magic-helper

Version:

this is magic helper

13 lines (12 loc) 258 B
import { action } from './action'; export const toScan = (config) => { const { targetUrl, fail } = config; action({ actionType: 'scan', targetUrl }).catch((err) => { if (fail) { fail(err); } }); };