Skip to content

Instantly share code, notes, and snippets.

View gyula-ny's full-sized avatar

Gyula Nyirfalvi gyula-ny

View GitHub Profile
@gyula-ny
gyula-ny / wiki_days_urls.js
Last active November 23, 2017 09:53
wiki_days_urls.js
const R = require('ramda');
const BASEURL = "https://en.wikipedia.org/wiki/";
const baseURL = (month,day) => `${BASEURL}${month}_${day}`;
const numberOfDays = function(m) {
return m === 1 ? 29 :
(R.contains(m, [0,2,4,6,7,9,11] )) ? 31 : 30
}