xabikos / vscode-javascript

Contains the code snippets for JavaScript (ES6) development in VS Code editor
MIT License
328 stars 136 forks source link

feat: add export snippets #95

Closed bmacher closed 8 months ago

bmacher commented 2 years ago

Adds the snippets emd and eme.

// emd
export { isString } from './utils'

// eme
export * as Utils from './utils'