mirror of
https://github.com/tc39/test262.git
synced 2025-07-15 01:54:38 +02:00
12 lines
295 B
JavaScript
12 lines
295 B
JavaScript
// Copyright (C) 2024 Jordan Harband. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-error.iserror
|
|
description: >
|
|
Returns false on symbols
|
|
features: [Error.isError, Symbol]
|
|
---*/
|
|
|
|
assert.sameValue(Error.isError(Symbol()), false);
|