Age | Commit message (Expand) | Author |
2021-06-19 | LibJS: Add the Number.prototype.toFixed method | Idan Horowitz |
2021-06-17 | LibJS: Add the Object.prototype.__lookup{Getter, Setter}__ methods | Idan Horowitz |
2021-06-17 | LibJS: Add the Object.prototype.__define{Getter, Setter}__ methods | Idan Horowitz |
2021-06-17 | LibJS: Add the Object.prototype.__proto__ native accessor property | Idan Horowitz |
2021-06-16 | LibJS: Add the String.prototype.codePointAt() method | Idan Horowitz |
2021-06-16 | LibJS: Add the String.fromCodePoint() method | Idan Horowitz |
2021-06-15 | LibJS: Add all of the FinalizationRegistry.prototype methods | Idan Horowitz |
2021-06-15 | LibJS: Add the Object.fromEntries method | Idan Horowitz |
2021-06-14 | LibJS: Implement Array.prototype.copyWithin generically | davidot |
2021-06-14 | LibJS: Implement Array.prototype.flatMap | davidot |
2021-06-14 | LibJS: Add all of the DataView.prototype.set* methods | Idan Horowitz |
2021-06-14 | LibJS: Add all of the DataView.prototype.get* methods | Idan Horowitz |
2021-06-13 | LibJS: Avoid lots of string-to-int during global object construction | Andreas Kling |
2021-06-12 | LibJS: Add the Object.getOwnPropertySymbols method | Idan Horowitz |
2021-06-12 | LibJS: Add the WeakRef built-in object | Idan Horowitz |
2021-06-12 | LibJS: Implement Object.assign() | Linus Groh |
2021-06-11 | LibJS: Implement the Error Cause proposal | Linus Groh |
2021-06-11 | LibJS: Implement AggregateError | Linus Groh |
2021-06-11 | LibJS: Implement generator functions (only in bytecode mode) | Ali Mohammad Pur |
2021-06-09 | LibJS: Add most of the Set.prototype methods | Idan Horowitz |
2021-06-09 | LibJS: Add the Set built-in object | Idan Horowitz |
2021-06-08 | LibJS: Implement Proxy.revocable() | Linus Groh |
2021-06-06 | LibJS: Add Date.setUTC{Date, Month, Hours, ...}() aliases | Idan Horowitz |
2021-06-06 | LibJS: Add Date.prototype.setTime() | Idan Horowitz |
2021-06-06 | LibJS: Add Date.prototype.setMonth() | Idan Horowitz |
2021-06-06 | LibJS: Add Date.prototype.setDate() | Idan Horowitz |
2021-06-06 | LibJS: Stub out Date.prototype.getTimezoneOffset() | Idan Horowitz |
2021-06-05 | LibJS: Add the global escape() & unescape() methods | Idan Horowitz |
2021-06-05 | LibJS: Add the Number.{MAX, MIN}_VALUE constants | Idan Horowitz |
2021-06-02 | LibJS: Add the String.prototype.trim{Left, Right} aliases | Idan Horowitz |
2021-05-30 | LibJS: Add String.prototype.anchor & friends | Idan Horowitz |
2021-05-29 | LibJS: Add Date.prototype.{get, set}Year() | Idan Horowitz |
2021-05-21 | LibJS: Expose TypedArray.prototype.byteOffset | Luke |
2021-05-21 | LibJS: Expose TypedArray.prototype.buffer | Luke |
2021-05-18 | LibJS: Implement Object.hasOwn() :^) | Andreas Kling |
2021-04-22 | Everything: Move to SPDX license identifiers in all files. | Brian Gianforcaro |
2021-04-18 | LibJS: Implement console.assert() | Linus Groh |
2021-04-14 | LibJS: Implement the encode/decodeURI(Component) family of functions | Idan Horowitz |
2021-04-10 | LibJS: Implement Object.create() | Linus Groh |
2021-04-10 | LibJS: Implement Object.defineProperties() | Linus Groh |
2021-04-07 | LibJS: Implement Object.isFrozen() and Object.isSealed() | Linus Groh |
2021-04-07 | LibJS: Implement Object.freeze() and Object.seal() | Linus Groh |
2021-04-02 | LibJS: Add initial support for Promises | Linus Groh |
2021-03-22 | LibJS Date: Added toUTCString() | Petróczi Zoltán |
2021-03-19 | LibJS: Add Date methods: setHours, setMinutes, setSeconds, setMilliseconds | tuqqu |
2021-03-15 | LibJS: Add arguments.callee to our hack arguments object | Andreas Kling |
2021-03-15 | LibJS: Add Date.prototype.toGMTString() | Andreas Kling |
2021-03-15 | LibJS: Partial support for Date.prototype.setFullYear() | Andreas Kling |
2021-03-15 | LibJS: Add naive implementation of eval() :^) | Andreas Kling |
2021-03-12 | LibJS: Implement 'Relative Indexing Method' proposal (.at()) | Linus Groh |