mirror of
https://github.com/azure/login.git
synced 2026-06-06 10:47:05 +00:00
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
define(function () {
|
|
|
|
// A version of the `<` operator that can be passed around as a function.
|
|
function less(left, right) {
|
|
return left < right;
|
|
}
|
|
|
|
return less;
|
|
|
|
});
|