1. 11 Mar, 2015 9 commits
  2. 07 Mar, 2015 1 commit
  3. 03 Mar, 2015 1 commit
  4. 02 Mar, 2015 4 commits
  5. 01 Mar, 2015 6 commits
  6. 28 Feb, 2015 13 commits
  7. 27 Feb, 2015 2 commits
  8. 25 Feb, 2015 2 commits
  9. 24 Feb, 2015 2 commits
    • Standardizes Readme to Spaces · a84fcea4
      While updating the readme, there was inconsistency between tabs and spaces
      this makes it all-spaces, which is in alignment with the JS standards for
      the project. (Plus, mixing the two is some horrible form of evil)
      Jakob Heuser authored
    • Adding a backwards compatible node-style callback · 69a45603
      This is node-style callbacks for #676. This allows us to release
      the new callback style without introducing backwards incompatible
      changes (or making changes to the binary from 2.0.1). If a node style
      callback is provided, it will be used. For now, this stacks with
      the original `options.success` and `options.error`, although it can
      be trivially changed to an xor.
      
      To highlight the new interface, a separate `describe` was added to the
      tests which identifies the `{options}, cb` interface and tests it
      independently.
      Jakob Heuser authored