Generator for a dust.js + stylus generator
Determine if a function is a native generator function.
Turns an AST into code.
Turn async generator functions into ES2015 generators
A function that returns the normally hidden `GeneratorFunction` constructor
Turn async functions into ES2015 generators
Helper function to remap async functions to generators
Check if something is a generator function
No description provided.
No description provided.
Generate artificial backtrace by walking arguments.callee.caller chain
A function that returns the normally hidden `AsyncGeneratorFunction` constructor
TypeScript definitions for @babel/generator
Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.
Rails-inspired generator system that provides scaffolding for your apps
A npm package wrapper for OpenAPI Generator (https://github.com/OpenAPITools/openapi-generator), generates which API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
semantic-release plugin to generate changelog content with conventional-changelog
Copy a descriptor from object A to object B
WebGL-accelerated signed distance field generation for 2D paths
Generates gorgeous HTML reports from mochawesome reporter.
Generate unique and memorable names
Generate JSON schema from your Typescript sources
ical-generator is a small piece of code which generates ical calendar files
Changes JsonValues to your custom typescript type
Mario generates and executes marketing plans via structured planning, multi-agent orchestration, and verification workflows via Claude Code slash commands.
Installs an opinionated Rails skeleton: thin `endpoint Operation, Component` controllers, plain-Ruby `Base::Operation::Base` + `Result` classes, a ViewComponent-based `app/concepts/<feature>/{operation,component}/` layout, and a `.claude/` directory pre-loaded with battle-tested slash commands, subagents, and architecture docs. Ships generators to scaffold the host app and to create new concept directories.
Oedipus Lex is a lexer generator in the same family as Rexical and Rex. Oedipus Lex is my independent lexer fork of Rexical. Rexical was in turn a fork of Rex. We've been unable to contact the author of rex in order to take it over, fix it up, extend it, and relicense it to MIT. So, Oedipus was written clean-room in order to bypass licensing constraints (and because bootstrapping is fun). Oedipus brings a lot of extras to the table and at this point is only historically related to rexical. The syntax has changed enough that any rexical lexer will have to be tweaked to work inside of oedipus. At the very least, you need to add slashes to all your regexps. Oedipus, like rexical, is based primarily on generating code much like you would a hand-written lexer. It is _not_ a table or hash driven lexer. It uses StrScanner within a multi-level case statement. As such, Oedipus matches on the _first_ match, not the longest (like lex and its ilk). This documentation is not meant to bypass any prerequisite knowledge on lexing or parsing. If you'd like to study the subject in further detail, please try [TIN321] or the [LLVM Tutorial] or some other good resource for CS learning. Books... books are good. I like books.