Lines Matching full:one
26 * Returns `true` if the operand (one) is divisble by the test's argument
28 * @param { number } one
32 function divisibleby(one, two) { argument
33 return one % two === 0;
49 * @param { any } one
52 function equalto(one, two) { argument
53 return one === two;
85 * Returns `true` if the operand (one) is greater or equal to the test's
87 * @param { number } one
91 function ge(one, two) { argument
92 return one >= two;
97 * Returns `true` if the operand (one) is greater than the test's argument
99 * @param { number } one
103 function greaterthan(one, two) { argument
104 return one > two;
112 * Returns `true` if the operand (one) is less than or equal to the test's
114 * @param { number } one
118 function le(one, two) { argument
119 return one <= two;
124 * Returns `true` if the operand (one) is less than the test's passed argument
126 * @param { number } one
130 function lessthan(one, two) { argument
131 return one < two;
149 * Returns `true` if the operand (one) is less than or equal to the test's
151 * @param { number } one
155 function ne(one, two) { argument
156 return one !== two;