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_T2
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Testing Array.from when passed an Object is passed
|
|
|
|
author: Hank Yates (hankyates@gmail.com)
|
|
|
|
includes: [runTestCase.js]
|
|
|
|
---*/
|
2014-07-14 07:15:05 +02:00
|
|
|
|
|
|
|
runTestCase(function () {
|
|
|
|
var testArr = Array.from({
|
|
|
|
'a': 1,
|
|
|
|
'b': '2',
|
|
|
|
'c': 'three',
|
|
|
|
'length': '3'
|
|
|
|
});
|
|
|
|
|
|
|
|
if (testArr.length != 3) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
});
|