mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-03-13 23:22:16 +08:00
13 lines
203 B
JavaScript
13 lines
203 B
JavaScript
define(function () {
|
|
|
|
// Predicate-generating function. Often useful outside of Underscore.
|
|
function constant(value) {
|
|
return function() {
|
|
return value;
|
|
};
|
|
}
|
|
|
|
return constant;
|
|
|
|
});
|