معرفی شرکت ها


regenerator-0.14.10


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Source transformer enabling ECMAScript 6 generator functions (yield) in JavaScript-of-today (ES5)
ویژگی مقدار
سیستم عامل -
نام فایل regenerator-0.14.10
نام regenerator
نسخه کتابخانه 0.14.10
نگهدارنده ['benjamn']
ایمیل نگهدارنده ['ben@benjamn.com']
نویسنده Ben Newman
ایمیل نویسنده bn@cs.stanford.edu
آدرس صفحه اصلی git://github.com/facebook/regenerator.git
آدرس اینترنتی http://github.com/facebook/regenerator
مجوز MIT
regenerator [![Build Status](https://travis-ci.org/facebook/regenerator.svg?branch=master)](https://travis-ci.org/facebook/regenerator) === This package implements a fully-functional source transformation that takes the syntax for generators/`yield` from [ECMAScript 2015 or ES2015](http://www.ecma-international.org/ecma-262/6.0/) and [Asynchronous Iteration](https://github.com/tc39/proposal-async-iteration) proposal and spits out efficient JS-of-today (ES5) that behaves the same way. A small runtime library (less than 1KB compressed) is required to provide the `wrapGenerator` function. You can install it either as a CommonJS module or as a standalone .js file, whichever you prefer. Installation --- From npm: ```sh npm install -g regenerator ``` From GitHub: ```sh cd path/to/node_modules git clone git://github.com/facebook/regenerator.git cd regenerator npm install . npm test ``` Usage --- You have several options for using this module. Simplest usage: ```sh regenerator es6.js > es5.js # Just the transform. regenerator --include-runtime es6.js > es5.js # Add the runtime too. regenerator src lib # Transform every .js file in src and output to lib. ``` Programmatic usage: ```js var es5Source = require("regenerator").compile(es6Source).code; var es5SourceWithRuntime = require("regenerator").compile(es6Source, { includeRuntime: true }).code; ``` AST transformation: ```js var recast = require("recast"); var ast = recast.parse(es6Source); ast = require("regenerator").transform(ast); var es5Source = recast.print(ast); ``` How can you get involved? --- The easiest way to get involved is to look for buggy examples using [the sandbox](http://facebook.github.io/regenerator/), and when you find something strange just click the "report a bug" link (the new issue form will be populated automatically with the problematic code). Alternatively, you can [fork](https://github.com/facebook/regenerator/fork) the repository, create some failing tests cases in [test/tests.es6.js](test/tests.es6.js), and send pull requests for me to fix. If you're feeling especially brave, you are more than welcome to dive into the transformer code and fix the bug(s) yourself, but I must warn you that the code could really benefit from [better implementation comments](https://github.com/facebook/regenerator/issues/7).


نیازمندی

مقدار نام
^7.8.4 @babel/core
^7.8.4 @babel/runtime
^7.8.3 @babel/types
^0.10.8 commoner
^0.1.8 private
^0.21.5 recast
^0.14.1 regenerator-preset
^0.13.11 regenerator-runtime
^0.15.1 regenerator-transform
^2.3.8 through


زبان مورد نیاز

مقدار نام
16.18.0 Npm


نحوه نصب


نصب پکیج tgz regenerator-0.14.10:

    npm install regenerator-0.14.10.tgz