| Server IP : 69.164.203.165 / Your IP : 216.73.216.219 Web Server : nginx/1.18.0 System : Linux localhost 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64 User : www-data ( 33) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/homecoming-api/node_modules/flatten/ |
Upload File : |
var flatten = require('./index'),
util = require('util'),
assert = require('assert');
[
[ [1, [ 2, 3]], [1, [2, 3]], 0],
[ [1, 2, 3 ], [1, 2, 3] ],
[ ['a', ['b', ['c']]], ['a', 'b', 'c'] ],
[ [2, [4, 6], 8, [[10]]], [2, 4, 6, 8, 10] ],
[ [1, [2, [3, [4, [5]]]]], [1, 2, 3, [4, [5]]], 2 ] // depth of 2
].forEach(function (t) {
assert.deepEqual(flatten(t[0], t[2]), t[1],
util.format('☠☠☠☠☠☠☠☠☠ %s ☠☠☠☠☠☠☠☠☠', formatCall(t))
);
console.log('✓ %s', formatCall(t));
});
function formatCall(t) {
if (typeof t[2] === 'undefined') {
return util.format('`flatten(%j) == %j`', t[0], t[1]);
}
else {
return util.format('`flatten(%j, %j) == %j`', t[0], t[2], t[1]);
}
}