Ein Projekt das es ermöglicht Beerpong über das Internet von zwei unabhängigen positionen aus zu spielen. Entstehung im Rahmen einer Praktikumsaufgabe im Fach Interaktion.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Readme.md 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # node-bytes
  2. Byte string parser / formatter.
  3. ## Example:
  4. ```js
  5. bytes('1kb')
  6. // => 1024
  7. bytes('2mb')
  8. // => 2097152
  9. bytes('1gb')
  10. // => 1073741824
  11. bytes(1073741824)
  12. // => 1gb
  13. bytes(1099511627776)
  14. // => 1tb
  15. ```
  16. ## Installation
  17. ```
  18. $ npm install bytes
  19. $ component install visionmedia/bytes.js
  20. ```
  21. ## License
  22. (The MIT License)
  23. Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
  24. Permission is hereby granted, free of charge, to any person obtaining
  25. a copy of this software and associated documentation files (the
  26. 'Software'), to deal in the Software without restriction, including
  27. without limitation the rights to use, copy, modify, merge, publish,
  28. distribute, sublicense, and/or sell copies of the Software, and to
  29. permit persons to whom the Software is furnished to do so, subject to
  30. the following conditions:
  31. The above copyright notice and this permission notice shall be
  32. included in all copies or substantial portions of the Software.
  33. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
  34. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  35. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  36. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  37. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  38. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  39. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.