Lonni Ingram
Lonni Ingram
I believe that Partytown's isolation could be improved by embedding it via a cross-origin iframe rather than directly as a worker. # Problem Because the worker inherits the embedding page's...
We are working on our first LightStep integration and noticed that the [minified client](https://github.com/lightstep/lightstep-tracer-javascript/blob/b9a0031b88f692745defe66804d6c2bf9dcb9de9/dist/lightstep-tracer.min.js) is quite large, at 446KB. This seems to be a regression introduced by #111. Prior to...
If a mapped observable has a value that is a property of `Object.prototype`, `findBucket` returns that property's value instead of a `simpleObjectLookup` instance. Fix #124
Here's a minimal testcase. ``` javascript 'use strict'; var nom = require('nomnom'); nom.command('foo'). options({ bar: { list: true } }). callback(function (args) { require('assert'). ok(args.bar instanceof Array, 'bar should be...
James Mickens pointed out in the Q&A of my Usenix talk that the broker is vulnerable to prototype poisoning by guest code. The simplest solution to this problem is to...
Currently, we assume that the broker is running in `src/` and prepend all guest script URLs with `../`. This breaks absolute URLs and is generally inflexible. The sandbox should allow...
Currently, the Handlebars language is defined by the behavior of this reference implementation and incompletely described by the documentation found at handlebarsjs.com. This makes it very difficult to reason about...