mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
3 lines
132 B
JavaScript
3 lines
132 B
JavaScript
|
export const parseSecretRecoveryPhrase = (seedPhrase) =>
|
||
|
(seedPhrase || '').trim().toLowerCase().match(/\w+/gu)?.join(' ') || '';
|