/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/test/mjsunit/es6/array-concat-nonarray.js
14 строк
457 B
Matheus Marchini
deps: update V8 to 8.1.307.20
19 мар 2020, 02:23
Не верифицирован
19 мар 2020, 02:23
2883c85
Код
Авторство
О чём код?
// Copyright 2014 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. "use strict"; class NonArray { constructor() { Array.apply(this, arguments); } }; var obj = new NonArray(1,2,3); var result = Array.prototype.concat.call(obj, 4, 5, 6); assertEquals(Array, result.constructor); assertEquals([obj,4,5,6], result); assertFalse(result instanceof NonArray);