Comparing version 0.3.0 to 0.3.2
@@ -39,3 +39,5 @@ var fs = require('fs'); | ||
opts = opts || {}; | ||
this.persistent = opts.persistent || false; | ||
this.persistent = opts.persistent != null | ||
? opts.persistent | ||
: true; | ||
this.globs = opts.glob || []; | ||
@@ -42,0 +44,0 @@ if (!Array.isArray(this.globs)) this.globs = [this.glob]; |
{ | ||
"name": "sane", | ||
"version": "0.3.0", | ||
"version": "0.3.2", | ||
"description": "Sane aims to be fast, small, and reliable file system watcher. No bells and whistles, just change events.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13439
409