mirror of https://github.com/tc39/test262.git
21 lines
422 B
JavaScript
21 lines
422 B
JavaScript
// Copyright (c) 2014 Hank Yates. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
es6id: 22.1.2.1_T3
|
|
description: Testing Array.from when passed an undefined
|
|
author: Hank Yates (hankyates@gmail.com)
|
|
includes: [runTestCase.js]
|
|
---*/
|
|
|
|
runTestCase(function () {
|
|
try {
|
|
Array.from(undefined);
|
|
} catch (e) {
|
|
return e instanceof TypeError;
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|