From f84aa6ae451981ed70a5d7f7f07b4921d4effb38 Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sun, 6 May 2018 19:09:47 -0400 Subject: [PATCH] readme tweaks --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8c21cfb..b242590 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,16 @@ > A minimalistic object collection library -**Record.js** aims to provide a lite, *2kb*, *zero-dependency* collection utility to help build simple in-memory or local storage database of records. Records are stored as simple arrays. +**Record.js** aims to provide a lite, *2kb*, *zero-dependency* collection utility to help build simple in-memory or local storage database of records. Records are stored as plain arrays. -Records can be exported to JSON, with no internals so you can import your data anywhere; via `.dump()` +Records can be exported to JSON, with no internal metadata[*], so you can import your data anywhere; via `.dump()` ### Features - Tiny, only 2kb - Zero-Dependencies - Saves to LocalStorage (if available) -- Saves to simple JSON +- Data saved as simple JSON - Browser or Nodejs compatible ## Getting Started @@ -94,3 +94,7 @@ Anyone is welcome to contribute, however, if you decide to get involved, please ## License [MIT](LICENSE) + +--- + +> [*]: with exception of a generated ID, if not provided \ No newline at end of file