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

js-data-structures-algorithms

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-data-structures-algorithms - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

.travis.yml

4

__tests__/binarySearch.test.js

@@ -6,3 +6,3 @@ const binarySearch = require("../algorithms/binarySearch");

describe("Binary Search", () => {
let chop = recursive;
let chop = non_recursive;
test("binary search edge cases", () => {

@@ -40,3 +40,3 @@ expect(chop(3, [])).toBe(-1);

describe("Binary Search Recursive", () => {
let chop = non_recursive;
let chop = recursive;
test("binary search edge cases", () => {

@@ -43,0 +43,0 @@ expect(chop(3, [])).toBe(-1);

{
"name": "js-data-structures-algorithms",
"description": "Project for showing different data structures and algorithms implemented in Javscript. Not exhaustive, mostly exploratory in nature and for career development. If you see anything wrong, let me know!",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "yarn jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darrenjennings/js-data-structures-algorithms.git"
},
"keywords": ["data", "structures", "algorithms", "javascript"],
"author": "Darren Jennings",
"license": "MIT",
"bugs": {
"url": "https://github.com/darrenjennings/js-data-structures-algorithms/issues"
},
"homepage": "https://github.com/darrenjennings/js-data-structures-algorithms#readme",
"devDependencies": {
"jest": "^20.0.4"
}
}
"name": "js-data-structures-algorithms",
"description": "Project for showing different data structures and algorithms implemented in Javscript. Not exhaustive, mostly exploratory in nature and for career development. If you see anything wrong, let me know!",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"commit": "git-cz",
"test": "yarn jest",
"test:coverage": "yarn jest -- --coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/darrenjennings/js-data-structures-algorithms.git"
},
"keywords": [
"data",
"structures",
"algorithms",
"javascript"
],
"author": "Darren Jennings",
"license": "MIT",
"bugs": {
"url": "https://github.com/darrenjennings/js-data-structures-algorithms/issues"
},
"homepage": "https://github.com/darrenjennings/js-data-structures-algorithms#readme",
"devDependencies": {
"codecov": "^2.3.0",
"codecov.io": "^0.1.6",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"ghooks": "^2.0.0",
"jest": "^20.0.4",
"nyc": "^11.1.0",
"semantic-release": "^7.0.1"
},
"czConfig": {
"path": "cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "yarn test"
}
}
}
# Data structures and Algorithms - Javascript
[![Travis](https://img.shields.io/travis/darrenjennings/js-data-structures-algorithms.svg?style=flat-square)](https://travis-ci.org/darrenjennings/js-data-structures-algorithms)
[![Coverage](https://img.shields.io/codecov/c/github/darrenjennings/js-data-structures-algorithms.svg?style=flat-square)](https://codecov.io/gh/darrenjennings/js-data-structures-algorithms)
[![Npm](https://img.shields.io/npm/v/js-data-structures-algorithms.svg?style=flat-square)](https://www.npmjs.com/package/js-data-structures-algorithms)
[![MIT License](https://img.shields.io/npm/l/js-data-structures-algorithms.svg?style=flat-square)](https://www.npmjs.com/package/js-data-structures-algorithms)
Project for showing different data structures and algorithms implemented in Javscript. Not exhaustive, mostly exploratory in nature and for career development. If you see anything wrong, let me know!

@@ -3,0 +9,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc