Mike Samuel

Results 183 comments of Mike Samuel
trafficstars

```js var re = RegExp.make`${ /(.)/ }(.)` // Case 1 - Match by Method re.exec("ab") // Case 2 - Oblique Match "ab".replace(re, "$1 $2") // calls re[@@replace] internally // Case...

I think the steps are 1. Triage the issues based on whether we have tentative consensus or unresolved differences. 2. Produce patches to reflect the tentative consensus. 3. Produce a...

https://github.com/mikesamuel/regexp-make-js/blob/master/unresolved.md captures unresolved issues at course detail.

``` javascript RegExp.make('i')`/foo/` ``` specifies the `i` flag for the output. The handling of `^` with the `m` flag is complicated by the lack of lookbehind. I think the other...

Filed w3c/webappsec-trusted-types/issues/247 to track dynamic asset references.

This should be possible under the draft specification. See section 9 of http://wiki.jqueryui.com/w/page/37898666/Template specifically: """ Flexible loading. Since a plugin takes a map of parse trees, it can find {{tmpl}}...

This is on the slate in the draft spec. Specifically, we're trying to avoid too many dependencies on jQuery and any on the DOM so that jQuery templates can be...

Added to draft spec at http://wiki.jqueryui.com/w/page/37898666/Template

Yeah. I think the core ambiguity is, with TT there's no difference between * Presence of `unsafe-eval` means `eval(x)` allowed for all *x* * Absence of `unsafe-eval` means `eval(x)` allowed...

@arturjanc, Sorry for the overlong writeup. > are you saying that a document with a CSP which bans `eval()` and enforces the use of TrustedScript for script-like sinks would ban...