New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bplus-index

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bplus-index - npm Package Compare versions

Comparing version

to
0.0.2

dist/bplus-index.js

25

package.json
{
"name": "bplus-index",
"version": "0.0.1",
"version": "0.0.2",
"description": "A B+tree",
"main": "index.js",
"main": "dist/bplus-index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "gulp test"
},

@@ -18,3 +18,20 @@ "repository": {

},
"homepage": "https://github.com/internalfx/bplus-index#readme"
"homepage": "https://github.com/internalfx/bplus-index#readme",
"devDependencies": {
"babel": "^5.8.5",
"babel-core": "^5.8.3",
"babel-loader": "^5.3.2",
"chai": "^3.2.0",
"faker": "^3.0.0",
"gulp": "^3.9.0",
"gulp-mocha": "^2.1.3",
"gulp-util": "^3.0.6",
"lodash": "^3.10.0",
"mocha": "^2.2.5",
"webpack": "^1.10.5",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"lodash.pullat": "^3.2.0"
}
}
# bplus-index
A JavaScript implementation of a B+tree structure.
A B+tree is very useful for fast lookups, ranges and sorting.
### Currently implemented
- `inject(key, val)`
- `eject(key, val)`
- `get(key)`
[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)