2014-07-14 07:15:05 +02:00
|
|
|
// Copyright (c) 2014 Hank Yates. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: 22.1.2.1_T3
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Testing Array.from when passed an undefined
|
|
|
|
author: Hank Yates (hankyates@gmail.com)
|
|
|
|
includes: [runTestCase.js]
|
|
|
|
---*/
|
2014-07-14 07:15:05 +02:00
|
|
|
|
|
|
|
runTestCase(function () {
|
|
|
|
try {
|
|
|
|
Array.from(undefined);
|
|
|
|
} catch (e) {
|
|
|
|
return e instanceof TypeError;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
});
|