https://github.com/harryho/esx-ds-algo
Data structure and algorithm with ES X
https://github.com/harryho/esx-ds-algo
algorithm data-structure es2015 es6
Last synced: 5 months ago
JSON representation
Data structure and algorithm with ES X
- Host: GitHub
- URL: https://github.com/harryho/esx-ds-algo
- Owner: harryho
- Created: 2017-09-07T13:19:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-10T11:47:16.000Z (over 7 years ago)
- Last Synced: 2025-01-13T10:11:31.415Z (11 months ago)
- Topics: algorithm, data-structure, es2015, es6
- Language: JavaScript
- Size: 30.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ESX-DS-ALGO
[](https://travis-ci.org/harryho/esx-ds-algo)
[](https://coveralls.io/github/harryho/esx-ds-algo?branch=master)
It is a repository of data structure and algorithm implemented in ES X, aka. ES6 or ES2015.
## Features
* The repository is implemented with ES6 features instead of Vanilla JS.
* Test comes with Mocha, Chai, Istanbul.
## Build & Test
```
# Install babel
npm install babel -g
# Install packages
npm install
# Run test cases
npm run test
...
30 passing (41ms)
# Run coverage
npm run coverage
...
...
=============================== Coverage summary ===============================
Statements : 92.22% ( 1696/1839 )
Branches : 71.55% ( 327/457 )
Functions : 94.84% ( 294/310 )
Lines : 92.9% ( 1649/1775 )
================================================================================
```