Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jfs

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jfs - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

4

lib/Store.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc