notes and docs...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2018-08-17 13:53:32 +03:00
parent 2e7054bc57
commit 1deed17e49
2 changed files with 6 additions and 3 deletions

View File

@ -5,7 +5,7 @@ XXX Intro
- [Object diff](#object-diff) - [Object diff](#object-diff)
- [Motivation](#motivation) - [Motivation](#motivation)
- [Goals / Features](#goals--features) - [Goals / Features](#goals--features)
- [General](#general) - [Introduction](#introduction)
- [Installation and loading](#installation-and-loading) - [Installation and loading](#installation-and-loading)
- [Diff](#diff) - [Diff](#diff)
- [Diff class API](#diff-class-api) - [Diff class API](#diff-class-api)
@ -32,15 +32,16 @@ XXX
### Goals / Features ### Goals / Features
- Full JSON *diff* support - Full JSON *diff* support
- Support for JavaScript objects without restrictions - Support for JavaScript objects without restrictions
- *Text diff* support
- ~~Optional attribute order support~~ (not done yet) - ~~Optional attribute order support~~ (not done yet)
- ~~Support extended Javascript types: Map, Set, ...etc.~~ (feasibility testing)
- *Text diff* support
- Configurable and extensible implementation - Configurable and extensible implementation
- As simple as possible - As simple as possible
XXX alternatives XXX alternatives
## General ## Introduction
```javascript ```javascript
var {Diff, cmp} = require('object-diff') var {Diff, cmp} = require('object-diff')

View File

@ -35,6 +35,8 @@ var MIN_TEXT_LENGTH = 100
// - objdiff / object-diff // - objdiff / object-diff
// - diffcmp / diff-cmp // - diffcmp / diff-cmp
// - compare // - compare
// - revise docs...
// ...should be simpler to enter, maybe example-oriented intro
// //
// //
//--------------------------------------------------------------------- //---------------------------------------------------------------------