# @jsmini/clone

> A professional deep clone library

Latest version **0.6.0** (published 2023-11-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install @jsmini/clone
pnpm add @jsmini/clone
yarn add @jsmini/clone
bun add @jsmini/clone
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.6.0 |
| Published | 2023-11-21 |
| First published | 2018-10-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Node | >=14.0.0 |
| Dependencies | 1 |
| Unpacked size | 77.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| GitHub stars | 242 |
| Author | yanhaijing |
| Maintainers | yanhaijing |

## Links

- npm: https://www.npmjs.com/package/@jsmini/clone
- Repository: https://github.com/jsmini/clone
- Homepage: https://github.com/jsmini/clone#readme
- Issues: https://github.com/jsmini/clone/issues
- npm.io page: https://npm.io/package/@jsmini/clone

## Dependencies (1)

- [@jsmini/type](https://npm.io/package/@jsmini/type.md) ^0.11.0

## Recent versions

- 0.6.0 (latest) — 2023-11-21
- 0.5.0 — 2023-09-24
- 0.4.2 — 2019-10-09
- 0.4.1 — 2019-10-05
- 0.4.0 — 2019-03-02
- 0.3.1 — 2019-03-02
- 0.3.0 — 2018-10-18
- 0.2.0 — 2018-10-17
- 0.1.1 — 2018-10-14
- 0.1.0 — 2018-10-10

## README

# [clone](https://github.com/jsmini/clone)

[![](https://img.shields.io/badge/Powered%20by-jslib%20base-brightgreen.svg)](https://github.com/yanhaijing/jslib-base)
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jsmini/clone/blob/master/LICENSE)
[![CI](https://github.com/jsmini/clone/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/jsmini/clone/actions/workflows/ci.yml)
[![npm](https://img.shields.io/badge/npm-0.6.0-orange.svg)](https://www.npmjs.com/package/@jsmini/clone)
[![NPM downloads](http://img.shields.io/npm/dm/@jsmini/clone.svg?style=flat-square)](http://www.npmtrends.com/@jsmini/clone)
[![Percentage of issues still open](http://isitmaintained.com/badge/open/jsmini/clone.svg)](http://isitmaintained.com/project/jsmini/clone 'Percentage of issues still open')

A professional deep clone library.

English | [简体中文](./README-zh_CN.md)

## Environment Support

unit test ensure it supports the following environments.

| IE/Edge | Chrome | Firefox | Safari | Opera | IOS | Android | Node  |
| ------- | ------ | ------- | ------ | ----- | --- | ------- | ----- |
| 6+      | 23+    | 4+      | 6+     | 10+   | 5+  | 2.3+    | 0.10+ |

## Directory

```
.
├── demo
├── dist  # production code
├── doc   # document
├── src   # source code
├── test  # unit test
├── CHANGELOG.md
└── TODO.md
```

## Usage

npm installation

```bash
$ npm install --save @jsmini/clone
```

Node.js

```js
var name = require('@jsmini/clone').name;
```

webpack

```js
import { name } from '@jsmini/clone';
```

Require.js

```js
requirejs(
  ['node_modules/@jsmini/clone/dist/index.aio.js'],
  function (jsmini_clone) {
    var name = jsmini_clone.name;
  },
);
```

Browser

```html
<script src="node_modules/@jsmini/clone/dist/index.aio.js"></script>

<script>
  var name = jsmini_clone.name;
</script>
```

## Document

- [API](https://github.com/jsmini/clone/blob/master/doc/api.md)
- [深拷贝的终极探索](https://yanhaijing.com/javascript/2018/10/10/clone-deep/)

## Contributing Guide ![PRs welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)

when initialize, install dependencies

```bash
$ npm install
```

builds your code for production to `build` folder

```bash
$ npm run build
```

run unit test. notice: borwser enviroment need to test manually. test file is in `test/browser`

```bash
$ npm test
```

change the version in package.json and README.md, add your description in CHANGELOG.md, and then release it happily.

```bash
$ npm run release
```

publish the new package to npm

```bash
$ npm publish --access=public
```

rename project. you need to edit project name when initialize project or anytime you want to rename the project . you need to rename `formName` and `toname` in file `rename.js`,which will automatically rename project name in the following files

- README.md
- package.json
- config/rollup.js
- test/browser/index.html

```bash
$ npm run rename # rename command
```

## Contributors

[contributors](https://github.com/jsmini/clone/graphs/contributors)

## CHANGELOG

[CHANGELOG.md](https://github.com/jsmini/clone/blob/master/CHANGELOG.md)

## TODO

[TODO.md](https://github.com/jsmini/clone/blob/master/TODO.md)

## who is using

---
_Source: https://npm.io/package/@jsmini/clone · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
