You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

listr2

Package Overview
Dependencies
Maintainers
1
Versions
242
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

listr2 - npm Package Compare versions

Comparing version

to
3.13.1

6

CHANGELOG.md

@@ -0,1 +1,7 @@

## [3.13.1](https://github.com/cenk1cenk2/listr2/compare/v3.13.0...v3.13.1) (2021-10-23)
### Bug Fixes
- use v8 functions for error collection ([be37833](https://github.com/cenk1cenk2/listr2/commit/be37833807b2f915c53e58946543d257c723ac4b))
# [3.13.0](https://github.com/cenk1cenk2/listr2/compare/v3.12.2...v3.13.0) (2021-10-23)

@@ -2,0 +8,0 @@

3

dist/utils/general.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.cloneObject = void 0;
const v8_1 = require("v8");
/**

@@ -8,4 +9,4 @@ * Deep clones a object in the most easiest manner.

function cloneObject(obj) {
return JSON.parse(JSON.stringify(obj));
return (0, v8_1.deserialize)((0, v8_1.serialize)(obj));
}
exports.cloneObject = cloneObject;
{
"name": "listr2",
"version": "3.13.0",
"version": "3.13.1",
"description": "Terminal task list reborn! Create beautiful CLI interfaces via easy and logical to implement task lists that feel alive and interactive.",

@@ -5,0 +5,0 @@ "license": "MIT",