Skip to content

Commit

Permalink
Merge branch 'master' into locale-ko
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkun committed Sep 25, 2018
2 parents 4efd3b2 + 9336f15 commit 9954bbd
Show file tree
Hide file tree
Showing 14 changed files with 374 additions and 309 deletions.
3 changes: 2 additions & 1 deletion docs/en/API-reference.md
Expand Up @@ -10,7 +10,7 @@ The `Dayjs` object is immutable, that is, all API operations that change the `Da
- [ISO 8601 string](#iso-8601-string)
- [Unix Timestamp (milliseconds since the Unix Epoch - Jan 1 1970, 12AM UTC)](#unix-timestamp-milliseconds-since-the-unix-epoch---jan-1-1970-12am-utc)
- [Native Javascript Date object](#native-javascript-date-object)
- [Clone `.clone() | dayjs(original: Dayjs)`](#clone-clone-dayjsoriginal-dayjs)
- [Clone `.clone() | dayjs(original: Dayjs)`](#clone-clone--dayjsoriginal-dayjs)
- [Validation `.isValid()`](#validation-isvalid)
- [Get and Set](#get-and-set)
- [Year `.year()`](#year-year)
Expand All @@ -22,6 +22,7 @@ The `Dayjs` object is immutable, that is, all API operations that change the `Da
- [Second `.second()`](#second-second)
- [Millisecond `.millisecond()`](#millisecond-millisecond)
- [Set `.set(unit: string, value: number)`](#set-setunit-string-value-number)
- [List of all available units](#list-of-all-available-units)
- [Manipulating](#manipulating)
- [Add `.add(value: number, unit: string)`](#add-addvalue-number-unit-string)
- [Subtract `.subtract(value: number, unit: string)`](#subtract-subtractvalue-number-unit-string)
Expand Down
2 changes: 1 addition & 1 deletion docs/en/Plugin.md
Expand Up @@ -26,7 +26,7 @@ dayjs.extend(plugin, options) // with plugin options

```javascript
import dayjs from 'dayjs'
import AdvancedFormat from 'dayjs/plugin/AdvancedFormat' // load on demand
import AdvancedFormat from 'dayjs/plugin/advancedFormat' // load on demand

dayjs.extend(AdvancedFormat) // use plugin
```
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/Plugin.md
Expand Up @@ -48,7 +48,7 @@ dayjs.extend(advancedFormat) // プラグインを使用
- AdvancedFormat はより多様なフォーマットを表現するために `dayjs().format` API を拡張するプラグインです。

```javascript
import AdvancedFormat from 'dayjs/plugin/AdvancedFormat'
import AdvancedFormat from 'dayjs/plugin/advancedFormat'

dayjs.extend(AdvancedFormat)

Expand Down
2 changes: 1 addition & 1 deletion docs/ko/Plugin.md
Expand Up @@ -26,7 +26,7 @@ dayjs.extend(plugin, options) // with plugin options

```javascript
import dayjs from 'dayjs'
import AdvancedFormat from 'dayjs/plugin/AdvancedFormat' // load on demand
import AdvancedFormat from 'dayjs/plugin/advancedFormat' // load on demand

dayjs.extend(AdvancedFormat) // use plugin
```
Expand Down

0 comments on commit 9954bbd

Please sign in to comment.