MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update readme!

+18 -10
+18 -10
README.txt
··· 140 140 - import 'ant:ffi' - Import built-in FFI module 141 141 142 142 JAVASCRIPT FEATURES: 143 - - Async/await and Promises (Promise.all, Promise.race, Promise.resolve, etc.) 144 - - ES6+ syntax (arrow functions, classes, template literals, destructuring) 145 - - Spread operator and rest parameters 146 - - Optional chaining (?.) 147 - - Nullish coalescing (??) 148 - - for...of and for...in loops 143 + Full ES1-ES5 compliance with ES6+ extensions: 144 + 145 + ES1-ES5 Core: 146 + - Automatic Semicolon Insertion (ASI) 147 + - var hoisting and function declarations 149 148 - try/catch/finally error handling 150 - - BigInt support with arithmetic operations 151 - - Number literals (binary 0b1010, octal 0o755, hex 0xFF) 149 + - for...in loops and property enumeration 152 150 - Regular expressions with full pattern matching 153 - - Built-in collections: Map, Set, WeakMap, WeakSet 151 + - Strict mode support ("use strict") 154 152 - Object.defineProperty() with property descriptors 155 - - Strict mode support ("use strict") 156 153 - Function.prototype.call/apply/bind 157 154 - Array methods (map, filter, reduce, forEach, etc.) 158 155 - String methods (split, replace, includes, startsWith, etc.) 159 156 - Math object with all standard functions 157 + 158 + ES6+ Extensions: 159 + - Async/await and Promises (Promise.all, Promise.race, Promise.resolve, etc.) 160 + - Arrow functions, classes, template literals, destructuring 161 + - Spread operator and rest parameters 162 + - Optional chaining (?.) and nullish coalescing (??) 163 + - for...of loops with iterables 164 + - let/const block scoping 165 + - BigInt support with arithmetic operations 166 + - Number literals (binary 0b1010, octal 0o755, hex 0xFF) 167 + - Built-in collections: Map, Set, WeakMap, WeakSet 160 168 161 169 CONCURRENCY: 162 170 - Minicoro-based coroutines for async/await