npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

praznici

v1.1.0

Published

Biblioteka koja omogućava proveru da li je datum državni praznik u Republici Srbiji ili ne.

Downloads

12

Readme

praznici

Biblioteka koja proverava da li je zadati datum državni praznik Rebublike Srbije ili ne

NPM Version Travis CI GitHub issues badge GitHub forks badge GitHub stars badge GitHub license badge Twitter badge

Praznici u Republici Srbiji

Prema Zakonu o državnim i drugim praznicima („Službeni glasnik RS”, br. 43/01, 101/07 i 92/11)

Državni praznici u Republici Srbiji koji se praznuju neradno su:

  • Nova godina - 1. i 2. januar
  • Sretenje - Dan državnosti Srbije -15. i 16. februar
  • Praznik rada -1. i 2. maj
  • Dan primirja u Prvom svetskom ratu -11. novembar

Verski praznici u Republici Srbiji koji se obeležavaju neradno su:

  • Prvi dan Božića - 7. januar
  • Vaskršnji praznici - počev od Velikog petka zaključno sa drugim danom Vaskrsa

Zakonom je propisano da ako jedan od datuma kada se praznuju navedeni državni praznici padne u nedelju, ne radi se prvog narednog radnog dana.


Install

npm i -S praznici
yarn global add praznici

Usage

const { daLiJeNacionalniPraznik } = require('praznici');
// ...or if you're using ES6 modules
// import { daLiJeNacionalniPraznik } from 'praznici'; 

daLiJeNacionalniPraznik('2021-11-11'); // true
daLiJeNacionalniPraznik(new Date(2021,10,11)); // true

Računanje datuma Uskrsa za odredjenu godinu:

const { uskrsZaGodinu } = require('praznici/lib/uskrs');
// ...or if you're using ES6 modules
// import { uskrsZaGodinu } from 'praznici/src/uskrs'; 

[2010,2015,2019,2020,2021].map(year => console.log(uskrsZaGodinu(year)));

// 2010-04-04
// 2015-04-12
// 2019-04-28
// 2020-04-19
// 2021-05-02
// Ukoliko želite proverite na https://sr.wikipedia.org/wiki/%D0%A3%D1%81%D0%BA%D1%80%D1%81

License

MIT