이 패키지는 날짜 관련 유틸리티 함수들을 제공합니다.
npm install @uxbooster/date
import { formatDate } from '@uxbooster/date';
const formattedDate = formatDate(new Date(), 'yyyy년 MM월 dd일');
console.log(formattedDate); // 예: 2024년 05월 30일
이 패키지에서 제공하는 함수 목록은 다음과 같습니다.
함수 이름 | 설명 | 예제 |
---|---|---|
convertDateToFormattedString |
Date 객체를 'yyyyMMdd' 형식의 형식화된 문자열로 변환합니다. |
convertDateToFormattedString(new Date(2024, 0, 1)) |
convertStringToDate | 날짜 문자열 또는 Date 객체를 지정된 시간대의 Date 객체로 변환합니다. |
convertStringToDate('2024-01-01') |
convertStringToDateFormat | 날짜 문자열 또는 Date 객체를 형식화된 날짜 문자열로 변환합니다. |
convertStringToDateFormat('2024-01-01T00:00:00+09:00') |
formatDate | 주어진 형식 문자열과 한국어 로케일을 사용하여 날짜를 형식화합니다. | formatDate(new Date(2024, 0, 1), 'PPPP') |
getCurrentDate | 지정된 시간대의 현재 날짜를 가져옵니다. | getCurrentDate('Asia/Seoul') |
parseDateString | 날짜 문자열을 구문 분석하여 Date 객체를 반환합니다. |
parseDateString('2024-01-01') |