🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

instant-note

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

instant-note - npm Package Compare versions

Comparing version
0.0.12
to
0.0.13
+1
notes/c.txt
c
+6
-1

@@ -13,3 +13,8 @@ #!/usr/bin/env node

const notesDir = path.resolve(__dirname, './notes')
const notes = fs.readdirSync(notesDir).map(path => {
const notes = fs.readdirSync(notesDir).sort(function (a, b) {
const aTime = fs.statSync(notesDir + '/' + a).mtime.getTime()
const bTime = fs.statSync(notesDir + '/' + b).mtime.getTime();
return bTime - aTime;
}).map(path => {
return path.replace('.txt', '')

@@ -16,0 +21,0 @@ })

+1
-1

@@ -1,1 +0,1 @@

201
2012
{
"name": "instant-note",
"version": "0.0.12",
"version": "0.0.13",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",