Source code

Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
for (let primitive of [true, 3.14, "hello", Symbol()]) {
let prototype = Object.getPrototypeOf(primitive);
Object.defineProperty(prototype, Symbol.iterator, {
configurable: true,
get() {
"use strict";
assertEq(this, primitive);
return () => [this][Symbol.iterator]();
},
});
assertEq(Array.from(primitive)[0], primitive);
delete prototype[Symbol.iterator];
}
if (typeof reportCompare === 'function')
reportCompare(0, 0);