3.4.7 • Published 6 years ago

bracket-updater v3.4.7

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

bracket-updater

Update a tournament bracket after the completion of a game.

NPM Build Status

API / Usage

Make a new bracket-updater object with an options object (the year and sport options are required and passed directly to bracket-data):

var BracketUpdater = require('bracket-updater');
var updater = new BracketUpdater({
   year: '2013',
   sport: 'ncaam',
   currentMaster: 'MWX812463XXXXXXXXXW19XX614XXXXXXXXXSXX54XXXXXXXXXXXEXX12463XXXXXXXXXFFXXX'
});

updater.update({
    winner: 2,
    loser: 15,
    fromRegion: 'MW'
});

updater.update({
    winner: 1,
    loser: 16,
    fromRegion: 'MW'
});

// 'MW1812463X2XXXXXXXW19XX614XXXXXXXXXSXX54XXXXXXXXXXXEXX12463XXXXXXXXXFFXXX'
console.log(updater.currentMaster);

options

These options are required when creating a new updater. They can't be changed.

  • sport: The sport you are validating. See bracket-data for more info.
  • year: The year you are validating. See bracket-data for more info.

These options can be passed in when creating a new updater or passed to update later.

  • winner: The winning team. Can be a seed (Integer), name (String) or an object with those properties.
  • loser: The losing team. Can be a seed (Integer), name (String) or an object with those properties.
  • fromRegion: The region the match was played in.
  • currentMaster: The current master bracket. This is required the first time you call update.

methods

  • update(options): Update the bracket. Options can include all the above options except sport and year. Returns the new currentMaster.
3.4.7

6 years ago

3.4.6

6 years ago

3.4.5

6 years ago

3.4.4

7 years ago

3.4.3

7 years ago

3.4.2

7 years ago

3.4.1

7 years ago

3.4.0

7 years ago

3.3.0

7 years ago

3.2.1

8 years ago

3.2.0

8 years ago

3.1.0

8 years ago

3.0.0

8 years ago

2.1.1

8 years ago

2.1.0

9 years ago

2.0.5

9 years ago

2.0.4

9 years ago

2.0.3

9 years ago

2.0.2

10 years ago

2.0.1

10 years ago

2.0.0

10 years ago

1.0.8

10 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago