UNPKG
9000
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
9000 Comparison Engine
github.com/corneliusrupert/9000
corneliusrupert/9000
9000
/
index.js
9 lines
•
187 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
= {
isOver9000
:
function
(
html
) {
if
(html >
9000
) {
return
true
; }
else
{
throw
new
Error
(
"WHAT?! "
+ html +
" is not over THOUSAND!!!"
); } } };