Created
November 12, 2019 17:56
-
-
Save gonaumov/e55a44f265dcd1733bf8fc8db37e6cf0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const getLastImport = (input) => { | |
const [,lastImport] = /(import\s+\w+)(?:(?!import\s+\w+).)*$/.exec(input) || [,false]; | |
return lastImport; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment