3 مستودعات
Exercises for recreating standard language utility functions and API polyfills in vanilla JavaScript.
Distinct from JavaScript Utility Libraries: Distinct from JavaScript Utility Libraries: focuses on the educational implementation of core utilities rather than providing a library
Explore 3 awesome GitHub repositories matching programming languages & runtimes · Polyfill Implementations. Refine with filters or upvote what's useful.
This project is a comprehensive knowledge base and study resource designed for mastering technical interviews. It provides structured guides, roadmaps, and curricula focused on data structures, algorithms, system design, and frontend engineering to help candidates prepare for software engineering screenings. The repository distinguishes itself by offering a holistic approach to professional advancement. Beyond technical drills, it includes a career development handbook covering resume optimization, salary benchmarking, and strategic negotiation coaching. It also provides detailed methodologie
Features tasks for coding common utility functions and API polyfills using vanilla JavaScript.
Traceur is a JavaScript syntax transpiler that transforms modern and next-generation language features into compatible versions for older runtime environments. It functions as a compiler that translates proposed language standards and upcoming syntax into current versions to maintain cross-engine compatibility. The project operates as an asynchronous code transformer, converting async functions and generators into promise-based state machines. It includes a functional tail-call optimizer that wraps recursive functions in trampolines to prevent stack overflows and an ECMAScript polyfill engine
Implements a compatible version of promises to coordinate asynchronous operations across different execution engines.
Regenerator is a JavaScript generator transpiler and build-time code processor. It converts ECMAScript generator functions and asynchronous iteration into ES5 compatible state machines to ensure modern control flow works in legacy runtimes. The project functions as an ES5 compatibility transformer that rewrites advanced asynchronous patterns into standard JavaScript. It includes a runtime polyfill helper library to manage the iteration protocol and coordinate state transitions for the transpiled code. The tool provides capabilities for language transformation and asynchronous workflow polyfi
Ships a runtime polyfill for asynchronous primitives to manage iteration protocols and state transitions.