| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,7 +16,9 @@ const normalizedValues = ['a', '1', 'true', 'undefined', 'null', '\uFFFD', | |||
| 16 | 16 | '[object Object]']; | |
| 17 | 17 | ||
| 18 | 18 | const m = new URL('http://example.org'); | |
| 19 | + const ownSymbolsBeforeGetterAccess = Object.getOwnPropertySymbols(m); | ||
| 19 | 20 | const sp = m.searchParams; | |
| 21 | + assert.deepStrictEqual(Object.getOwnPropertySymbols(m), ownSymbolsBeforeGetterAccess); | ||
| 20 | 22 | ||
| 21 | 23 | assert(sp); | |
| 22 | 24 | assert.strictEqual(sp.toString(), ''); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments