Check if is night mode
npm install is-night-mode> Check if is night mode
``bash`
$ npm install is-night-modeor
$ yarn add is-night-mode
`js
const isNightMode = require("is-night-mode");
// default options
const options = {
day: 6,
night: 20,
checkLocalStorage: false,
itemName: "night-mode",
checkOSTheme: false
};
isNightMode(); // without passing options default options are defined
//=> true || false
isNightMode(options); // with passing custom options
//=> true || false
``
MIT © Abdessalam BENHARIRA