Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

dayjs-greet

Dev-Rise204MIT1.1.2TypeScript support: included

Time-based greeting plugin for dayjs

dayjs, date, datetime, greet, greeting, time-based, welcome

readme

DayJS Greet Plugin

A Day.js plugin to get time-based greeting.

Installation

npm i dayjs-greet

Initialization

import dayjs from 'dayjs'
import greetPlugin from 'dayjs-greet'

// import dayjs locales before you extend dayjs
// import 'dayjs/locale/de';
dayjs.extend(greetPlugin)

Usage

dayjs('2022-03-08 08:00:00').greet() // Good morning
dayjs('2022-03-08 08:00:00').greet(' Your Name!') // Good morning Your Name!
dayjs('2022-03-08 13:00:00').greet() // Good afternoon
dayjs('2022-03-08 13:00:00').greet(' Your Name!') // Good afternoon Your Name!
dayjs('2022-03-08 20:00:00').greet() // Good evening
dayjs('2022-03-08 20:00:00').greet(' Your Name!') // Good evening Your Name!

Contributors

contributers