Socket
Socket
Sign inDemoInstall

babel-plugin-sync

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-sync

async to sync, and maybe vice versa


Version published
Weekly downloads
6
increased by20%
Maintainers
1
Install size
6.09 kB
Created
Weekly downloads
 

Readme

Source

babel-plugin-sync

NPM version NPM downloads CircleCI donate chat

Install

yarn add babel-plugin-sync --dev

Usage

With .babelrc:

{
  "plugins": [
    "sync"
  ]
}

In:

class MyModule {
  // $MakeMeSync
  async read() {
    await this.resolve('./file')
  }
}

Out:

class MyModule {
  async read() {
    await this.resolve('./file')
  }
  readSync() {
    this.resolveSync('./file')
  }
}

Make returnStatement sync

We don't know if it's safe to make the return statement sync at all, if you're sure about this, use // $MakeMeSync mark explicitly.

class Foo {
  // $MakeMeSync
  async foo() {
-    return this.bar()
+    return this.bar() // $MakeMeSync
  }
}

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

babel-plugin-sync © egoist, Released under the MIT License.
Authored and maintained by egoist with help from contributors (list).

github.com/egoist · GitHub @egoist · Twitter @_egoistlily

FAQs

Last updated on 17 Apr 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc