Skip to content

Instantly share code, notes, and snippets.

View dhoward's full-sized avatar

Daniel Howard dhoward

  • Los Angeles, CA
View GitHub Profile
export default function transformer(file, api) {
const j = api.jscodeshift;
return j(file.source)
/* get all imports with the right local name and source */
.find(j.ImportDeclaration, {
specifiers: [{
local:{
name:"Helmet"
}