0.3.1 • Published 11 years ago

winner v0.3.1

Weekly downloads
4
License
-
Repository
github
Last release
11 years ago

winner

Compare the items of an array and return the biggest

Getting Started

With component(1)

component install jkroso/winner

In Node.js

npm install jkroso/winner --save

Then its a good idea to add winner to your bundledDependencies array in your package.json file if you are planning to publish. This is just until npm completes its support for github packages

API

var winner = require('winner')

max()

Compare the values of an array based on some comparison and return the value that comes out on top. If you don't pass a value for fn the values will be compared with a > b

winner([1,2,3]) // => 3
winner([{a:1}, {a:2}], 'a') // => {a:2}
winner([{a:1}, {a:2}], function(item){
  return item.a
}) // => {a:2}

Spec

literal values

should compare using >.

winner([1,2,3]).should.equal(3)
winner(['a', 'b', 'c']).should.equal('c')
winner([new Date(1), new Date(2)]).getTime().should.equal(2)

should return undefined for an empty array.

should.not.exist(winner([]))

should return undefined if no values match the mimimum criteria.

should.not.exist(winner([1,2,3], null, 5))

with comparators

should return the item not the value of the comparator.

winner(arr, function (item) {
  return item.a
}).should.deep.equal({a:3})

should return the first one if they are all the same.

var arr = [{a:1}, {a:1}, {a:1}]
winner(arr, function (i) {
  return i.a
}).should.equal(arr[0])

should return undefined if no values match the mimimum criteria.

should.not.exist(
  winner(arr, function (item) {
    return item.a
  }, 5)
)

Running the tests

Before you can run any tests you will need to execute $ npm install

Running the test in node is just a matter of executing $ make test

Running in the browser though requires a build. To do that execute $ make test/built.js. If all goes well you should then be able to open your browser to the test directory and watch the test suite run.

Note: these commands don't work on windows.

Release History

(Nothing yet)

License

Copyright (c) 2012 Jakeb Rosoman

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.3.1

11 years ago

0.3.0

11 years ago

0.2.0

11 years ago