UNPKG

knip

Version:

Find unused files, dependencies and exports in your TypeScript and JavaScript projects

7 lines (6 loc) 201 B
export const getArgumentValues = (value, matcher) => { const match = value.match(matcher); if (match) return match.map(value => value.trim().split(/[ =]/)[1].trim()); return []; };