Comparing version 0.2.1 to 0.2.2
@@ -46,4 +46,4 @@ // Generated by CoffeeScript 1.8.0 | ||
var group, owner; | ||
owner = process.getuid() === stat.uid; | ||
group = process.getgid() === stat.gid; | ||
owner = (typeof process.getuid === "function" ? process.getuid() : void 0) === stat.uid; | ||
group = (typeof process.getgid === "function" ? process.getgid() : void 0) === stat.gid; | ||
return owner && (stat.mode & 128) || group && (stat.mode & 16) || (stat.mode & 2); | ||
@@ -50,0 +50,0 @@ }; |
{ | ||
"name": "jfs", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"main": "./lib/Store", | ||
@@ -20,3 +20,3 @@ "description": "A simple JSON file store", | ||
"devDependencies": { | ||
"chai": "~1.9.2", | ||
"chai": "~1.10.0", | ||
"coffee-script": "~1.8.0", | ||
@@ -23,0 +23,0 @@ "coffeelint": "~1.6.1", |
@@ -79,3 +79,3 @@ # JSON file store | ||
If you want to store all objects in a single file, | ||
set the `type` option to `memory`: | ||
set the `type` option to `single`: | ||
@@ -82,0 +82,0 @@ ```javascript |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
14545
0