Created
April 26, 2017 20:44
-
-
Save brevity/a318e4adcfcf61febd8ca542e882fbc9 to your computer and use it in GitHub Desktop.
null created by brevity - https://repl.it/H2m8/0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// a mock would look like... | |
let daily = [ | |
{ | |
//.... | |
}, | |
{ | |
name: `2017-01-01.md`, | |
path: `/User/brevity/code/notes/2017-01-01.md`, | |
stat: { | |
blocks: 8 | |
// & other props from fs.lstatSync() on the path | |
}, | |
md : `Contents of the .md file | |
======================== | |
- __woot__ | |
- 'n | |
- _stuff_ | |
` | |
}, | |
{ | |
//.... | |
} | |
] | |
console.dir(daily, {dir:5}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment