Sha256: f3f3ad63c0017685764ea037690f0bf101e01c9c90413a6f73044f21624e3715
Contents?: true
Size: 436 Bytes
Versions: 73
Compression:
Stored size: 436 Bytes
Contents
'use strict'; /** * Represents a year to check whether is leap or not * * @param {number} year * * Numeric year. */ function Year(year) { this.year = year; } /** * Whether given year is a leap year. * * @returns {boolean} * * Whether given year is a leap year. */ Year.prototype.isLeap = function () { return (this.year % 400 === 0) || ((this.year % 4 === 0) && (this.year % 100 !== 0)); }; module.exports = Year;
Version data entries
73 entries across 73 versions & 1 rubygems