Skip to content

Instantly share code, notes, and snippets.

@gonaumov
Created November 12, 2019 17:56
Show Gist options
  • Save gonaumov/e55a44f265dcd1733bf8fc8db37e6cf0 to your computer and use it in GitHub Desktop.
Save gonaumov/e55a44f265dcd1733bf8fc8db37e6cf0 to your computer and use it in GitHub Desktop.
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