Skip to content

Instantly share code, notes, and snippets.

@aslakhellesoy
Last active March 22, 2017 13:37
Show Gist options
  • Save aslakhellesoy/b6c3bbc70e447399f5d7e697f83780a6 to your computer and use it in GitHub Desktop.
Save aslakhellesoy/b6c3bbc70e447399f5d7e697f83780a6 to your computer and use it in GitHub Desktop.
Replace `import Stream from "stream"` with `const Stream = require('stream')` in JavaScript (Atom)
^import (.*) from ["'](.*)["']$
const $1 = require('$2')
export default
module.exports =
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment