0.1.2 • Published 4 years ago
jary-calendar v0.1.2
jary-calendar
Quick start
npm install jary-calendarimport { getMonth } from "jary-calendar";
const month = getMonth(2021, 8); // year, monthDescription
참고
Node.js에서 실행할 경우 다음과 같은 에러가 날 수 있습니다.
SyntaxError: Cannot use import statement outside a module해당 모듈은 ESModule로 작성되어 있어 브라우저 환경에서 실행이 가능합니다.
Node.js에서 사용하고 싶다면 package.json에 "type":"module" 항목을 추가합니다.