mirror of
https://github.com/azure/login.git
synced 2026-06-06 16:47:08 +00:00
6 lines
159 B
JavaScript
6 lines
159 B
JavaScript
// Predicate-generating function. Often useful outside of Underscore.
|
|
export default function constant(value) {
|
|
return function() {
|
|
return value;
|
|
};
|
|
}
|