├── .gitignore ├── README.md ├── TODO.md ├── browser_example ├── browserfy_root.js └── example.html ├── example.js ├── index.js ├── jot ├── copies.js ├── diff.js ├── index.js ├── lists.js ├── merge.js ├── objects.js ├── sequences.js └── values.js ├── package.json ├── test.js └── tests ├── diff.js ├── merge.js ├── meta.js ├── objects.js ├── random.js ├── sequences.js └── values.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/TODO.md -------------------------------------------------------------------------------- /browser_example/browserfy_root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/browser_example/browserfy_root.js -------------------------------------------------------------------------------- /browser_example/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/browser_example/example.html -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./jot") 2 | -------------------------------------------------------------------------------- /jot/copies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/jot/copies.js -------------------------------------------------------------------------------- /jot/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/jot/diff.js -------------------------------------------------------------------------------- /jot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/jot/index.js -------------------------------------------------------------------------------- /jot/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/jot/lists.js -------------------------------------------------------------------------------- /jot/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/jot/merge.js -------------------------------------------------------------------------------- /jot/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/jot/objects.js -------------------------------------------------------------------------------- /jot/sequences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/jot/sequences.js -------------------------------------------------------------------------------- /jot/values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/jot/values.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/test.js -------------------------------------------------------------------------------- /tests/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/tests/diff.js -------------------------------------------------------------------------------- /tests/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/tests/merge.js -------------------------------------------------------------------------------- /tests/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/tests/meta.js -------------------------------------------------------------------------------- /tests/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/tests/objects.js -------------------------------------------------------------------------------- /tests/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/tests/random.js -------------------------------------------------------------------------------- /tests/sequences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/tests/sequences.js -------------------------------------------------------------------------------- /tests/values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/jot/HEAD/tests/values.js --------------------------------------------------------------------------------