UNPKG

l7note

Version:

Access your notion notes quick

14 lines (9 loc) 304 B
import { globalConfig } from '../setup'; const getSettingValueByName = (input: string) => { let index = globalConfig.optionalArgs.findIndex(arg => arg.name == input); if (index < 0) { return ''; } return globalConfig.optionalArgs[index].value; }; export { getSettingValueByName };