forked from actions/setup-maven
7 lines
159 B
JavaScript
7 lines
159 B
JavaScript
// Predicate-generating function. Often useful outside of Underscore.
|
|
export default function constant(value) {
|
|
return function() {
|
|
return value;
|
|
};
|
|
}
|