]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/date/#/days-in-month.js
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / node_modules / node-gyp / node_modules / path-array / node_modules / array-index / node_modules / es6-symbol / node_modules / es5-ext / test / date / # / days-in-month.js
1 'use strict';
2
3 module.exports = function (t, a) {
4         a(t.call(new Date(2001, 0, 1)), 31, "January");
5         a(t.call(new Date(2001, 1, 1)), 28, "February");
6         a(t.call(new Date(2000, 1, 1)), 29, "February (leap)");
7         a(t.call(new Date(2001, 2, 1)), 31, "March");
8         a(t.call(new Date(2001, 3, 1)), 30, "April");
9         a(t.call(new Date(2001, 4, 1)), 31, "May");
10         a(t.call(new Date(2001, 5, 1)), 30, "June");
11         a(t.call(new Date(2001, 6, 1)), 31, "July");
12         a(t.call(new Date(2001, 7, 1)), 31, "August");
13         a(t.call(new Date(2001, 8, 1)), 30, "September");
14         a(t.call(new Date(2001, 9, 1)), 31, "October");
15         a(t.call(new Date(2001, 10, 1)), 30, "November");
16         a(t.call(new Date(2001, 11, 1)), 31, "December");
17 };