Skip to content

tonliver/rangelist

Repository files navigation

RangeList

Code organization

|- build          // config file for build
|- docs           // ts docs
|- src            // implementation source code
  |- Range.ts
  |- RangeList.ts
|- tests          // unit tests
  |- Range.spec.ts
  |- RangeList.spec.ts

Example

import RangeList from './RangeList';

const rangeList = new RangeList();

rangeList.add([1, 2]);
rangeList.remove([3, 4]);

Qucik start

Install all required packages

npm install

Run example

npm run app

All commands

npm run app     # run example
npm run test    # run all unit test
npm run doc     # generate ts docs
npm run build   # build code for production env

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published