UNPKG

ilp-core

Version:

ILP core module managing ledger abstraction

9 lines (6 loc) 162 B
// account formatting export function getAccountName(account) { if (!account) return const match = account.match(/(.*)\@.*/) if (match) return match[1] }