Skip to content

Commit

Permalink
docs: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkun committed Jul 4, 2018
1 parent e2e5116 commit 322b42b
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 58 deletions.
10 changes: 0 additions & 10 deletions docs/en/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,16 +389,6 @@ dayjs.isDayjs(dayjs()); // true
dayjs.isDayjs(new Date()); // false
```

### Is Leap Year `.isLeapYear()`

**[DEPRECATED] in 1.7.0, use [`IsLeapYear plugin`](./Plugin.md#isleapyear) instead**

Returns a `boolean` indicating whether the `Dayjs`'s year is a leap year or not.

```js
dayjs('2000-01-01').isLeapYear(); // true
```

## Plugin APIs

### RelativeTime
Expand Down
13 changes: 0 additions & 13 deletions docs/ja/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,19 +460,6 @@ dayjs.isDayjs(dayjs()); // true
dayjs.isDayjs(new Date()); // false
```

#### Is Leap Year

**[DEPRECATED] in 1.7.0, use [`IsLeapYear plugin`](./Plugin.md#isleapyear) instead**

* Boolean を返します

その年がうるう年かどうかをチェックします。

```js
dayjs().isLeapYear();
dayjs('2000-01-01').isLeapYear(); // true
```

## Plugin APIs

### RelativeTime
Expand Down
10 changes: 0 additions & 10 deletions docs/ko/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,16 +389,6 @@ dayjs.isDayjs(dayjs()); // true
dayjs.isDayjs(new Date()); // false
```

### Is Leap Year `.isLeapYear()`

**[DEPRECATED] in 1.7.0, use [`IsLeapYear plugin`](./Plugin.md#isleapyear) instead**

`Dayjs` 값이 윤년인지를 확인합니다. 반환 타입은 `boolean` 입니다.

```js
dayjs('2000-01-01').isLeapYear(); // true
```

## Plugin APIs

### RelativeTime
Expand Down
13 changes: 0 additions & 13 deletions docs/pt-br/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -438,19 +438,6 @@ dayjs.isDayjs(dayjs()); // true
dayjs.isDayjs(new Date()); // false
```

#### Ano Bissexto

**[DEPRECATED] in 1.7.0, use [`IsLeapYear plugin`](./Plugin.md#isleapyear) instead**

* retorna um Boolean

Se um ano é bissexto.

```js
dayjs().isLeapYear();
dayjs('2000-01-01').isLeapYear(); // true
```

## Plugin APIs

### RelativeTime
Expand Down
12 changes: 0 additions & 12 deletions docs/zh-cn/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,18 +338,6 @@ dayjs.isDayjs(dayjs()); // true
dayjs.isDayjs(new Date()); // false
```

#### 是否闰年

**[已废弃] 将在 1.7.0 废弃, 使用 [`IsLeapYear 插件`](./Plugin.md#isleapyear) 代替**

- return Boolean

是否闰年。
```js
dayjs().isLeapYear();
dayjs('2000-01-01').isLeapYear(); // true
```

## 插件 APIs

### 相对时间
Expand Down

0 comments on commit 322b42b

Please sign in to comment.