New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grandfatherson

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grandfatherson - npm Package Compare versions

Comparing version

to
0.1.2

29

filters.js

@@ -10,3 +10,3 @@

// Ref: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators
// Ref: http://stackoverflow.com/questions/4467539/javascript-modulo-not-behaving
// Ref: http://stackoverflow.com/questions/4467539/javascript-modulo-not-behaving
function mod(n, m) {

@@ -164,29 +164,2 @@ return ((n % m) + m) % m;

class Months extends Filter {
// Returning the starting datetime, `number` of months before `now`.
// static start(options) {
// if (! options || !_.isInteger(options.number) || options.number < 0) {
// throw 'Missing or Invalid number option';
// }
// if (! options.now ) {
// throw "Missing 'now' option";
// }
// var year = options.now.year();
// var month = options.now.month() - options.number + 1;
// // Handle negative months
// if (month < 0) {
// year = year + Math.floor(month/MONTHS_IN_YEAR);
// month = mod(month, MONTHS_IN_YEAR)
// }
// // Handle December
// // XXX Not sure the JavaScript port needs this special case
// var dt = this.mask(options.now);
// dt.year(year);
// dt.month(month);
// return dt;
// }
// return a datetime with the same value as `dt`, to a resolution of months

@@ -193,0 +166,0 @@ static mask (dt) {

12

History.md
## [0.1.2] - 2016-10-13
No code changes.
### Internals
* Removed commented-out code
## [0.1.1] - 2016-10-13

@@ -6,6 +14,8 @@

Added Github repository to package.json
### Internals
* Added Github repository to package.json
## [0.1.0] - 2016-10-13
Initial Release.
{
"name": "grandfatherson",
"version": "0.1.1",
"version": "0.1.2",
"keywords": ["backup", "rotation", "algorithm", "snapshots" ],

@@ -5,0 +5,0 @@ "description": "Grandfather Father Son algorithm, useful for backup rotation",