@basichelpers/date
v0.1.0
Published
```bash import { dateFormat, stringtoDate } from '@basichelpers/date'
Downloads
16
Readme
Install the dependencies
npm install @basichelpers/date
how to use
import { dateFormat } from '@basichelpers/date'
/**
* @returns {string} '2000/12/31'
*/
dateFormat(new Date('2000-12-31'), 'YYYY/MM/DD')
import { stringtoDate } from '@basichelpers/date'
/**
* @returns {date} Sun Dec 31 2000 09:00:00 GMT+0900 (日本標準時)
*/
stringtoDate('2000/12/31', '/')
/**
* @returns {date} Sun Dec 31 2000 12:30:00 GMT+0900 (日本標準時)
*/
stringtoDate('2000-12-31', '-', '12:30')
import { featureCheck } from '@basichelpers/date'
/**
* 与えられた日付が将来のものかを判定する関数
* falseが返ってきたら将来ではない
* @param {string} date '2021/12/31'
* @returns {boolean} false
*/
featureCheck('2020/12/31')
import { getYoubi } from '@basichelpers/date'
/**
* 与えられた日付から対象の日付の曜日を返す関数
* @param {string} date '2021/12/31'
* @returns {string} 木
*/
getYoubi('2020/12/31')