Closed tshemsedinov closed 4 years ago
Here is an example for performance tests, we need to compare multiple implementation: https://github.com/metarhia/common/pull/115
new Set
const merge = (...arrays) => [...(new Set([].concat(arrays)))];
This is now possible either via cli (metatests speed or metatests measure) or with manual calls to appropriate functions in speed module.
metatests speed
metatests measure
speed
Here is an example for performance tests, we need to compare multiple implementation: https://github.com/metarhia/common/pull/115
new Set
const merge = (...arrays) => [...(new Set([].concat(arrays)))];