Skip to content

Commit

Permalink
0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yanhaijing committed Sep 24, 2023
1 parent 9d12ea8 commit 3d9e354
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"check-coverage": true,
"lines": 75,
"statements": 75,
"lines": 50,
"statements": 50,
"functions": 0,
"branches": 75,
"branches": 50,
"reporter": ["lcov", "text"],
"require": ["@babel/register"],
"sourceMap": false,
Expand Down
2 changes: 1 addition & 1 deletion README-zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![](https://img.shields.io/badge/Powered%20by-jslib%20extend-brightgreen.svg)](https://github.com/yanhaijing/jslib-extend)
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jsmini/extend/blob/master/LICENSE)
[![CI](https://github.com/jsmini/extend/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/jsmini/extend/actions/workflows/ci.yml)
[![npm](https://img.shields.io/badge/npm-0.3.3-orange.svg)](https://www.npmjs.com/package/@jsmini/extend)
[![npm](https://img.shields.io/badge/npm-0.4.0-orange.svg)](https://www.npmjs.com/package/@jsmini/extend)
[![NPM downloads](http://img.shields.io/npm/dm/@jsmini/extend.svg?style=flat-square)](http://www.npmtrends.com/@jsmini/extend)
[![Percentage of issues still open](http://isitmaintained.com/badge/open/jsmini/extend.svg)](http://isitmaintained.com/project/jsmini/extend 'Percentage of issues still open')

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
[![](https://img.shields.io/badge/Powered%20by-jslib%20extend-brightgreen.svg)](https://github.com/yanhaijing/jslib-extend)
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jsmini/extend/blob/master/LICENSE)
[![CI](https://github.com/jsmini/extend/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/jsmini/extend/actions/workflows/ci.yml)
[![npm](https://img.shields.io/badge/npm-0.3.3-orange.svg)](https://www.npmjs.com/package/@jsmini/extend)
[![npm](https://img.shields.io/badge/npm-0.4.0-orange.svg)](https://www.npmjs.com/package/@jsmini/extend)
[![NPM downloads](http://img.shields.io/npm/dm/@jsmini/extend.svg?style=flat-square)](http://www.npmtrends.com/@jsmini/extend)
[![Percentage of issues still open](http://isitmaintained.com/badge/open/jsmini/extend.svg)](http://isitmaintained.com/project/jsmini/extend 'Percentage of issues still open')

A method like `$.extend` of Jquery. Merge Objects attributes to target object

将对象属性递归放到目标对象,类似jQuery的`$.extend`
Recursively assign object properties to the target object, similar to jQuery's $.extend..

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

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jsmini/extend",
"version": "0.3.3",
"description": "将对象属性递归放到目标对象,类似jQuery的`$.extend`",
"version": "0.4.0",
"description": "Recursively assign object properties to the target object, similar to jQuery's $.extend.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"sideEffects": false,
Expand Down

0 comments on commit 3d9e354

Please sign in to comment.