Code Monkey home page Code Monkey logo

Comments (2)

yortus avatar yortus commented on August 17, 2024

Hi @adnan-kamili,

It should not break the library itself, because you can import the async and await functions using whatever names you want.

Furthermore, neither async nor await are becoming keywords in the normal sense. async is not becoming a keyword at all (MDN ref) - I suspect this was a pragmatic approach, because otherwise it would break numerous scripts that depend on the very popular async library.

The await story is more complicated. It is a future reserved keyword, but only when it is found in module code, where a 'module' in this case means an ES6 module, and only at the top scope. That means a compliant JS runtime won't allow import await from 'asyncawait' in an ES6 module, however it will continue to be a valid identifier inside all function bodies, even in functions that appear inside ES6 modules.

So TL;DR at some future time when V8 and node.js support ES6 modules, you'll still be able to import async from 'asyncawait' but you'll have to use a different name for importing the await function.

By that time native async/await will be available so most projects will be able to transition to that anyway. Although this library may still be maintained since it can do a number of things native async/await cannot, such as being customisable, and being able to await at arbitrary stack depths (useful for function code, eg inside filter/forEach/map/reduce callbacks).

Does this answer your question?

from asyncawait.

adnan-kamili avatar adnan-kamili commented on August 17, 2024

Thanks for the reply. It does answer the question well

from asyncawait.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.