mirror of
https://github.com/azure/login.git
synced 2026-06-06 21:17:09 +00:00
8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
// Predicate-generating function. Often useful outside of Underscore.
|
|
function constant(value) {
|
|
return function() {
|
|
return value;
|
|
};
|
|
}
|
|
|
|
module.exports = constant;
|