UNPKG

over-9k

Version:
9 lines (7 loc) 264 B
'use strict'; /** * module.exports - single function that is exported by this module * @x1 - takes single parameter and compares it to the value of 9000. * returns true if value is > 9000, returns false if value is < 9000. */ module.exports = x1 => 9000 < x1