mirror of
https://github.com/Azure/setup-helm.git
synced 2026-07-07 00:41:38 +00:00
a517f2ff65
Co-authored-by: taakleton <taakleton@users.noreply.github.com>
9 lines
237 B
JavaScript
9 lines
237 B
JavaScript
var underscore = require('./underscore.js');
|
|
|
|
// Helper function to continue chaining intermediate results.
|
|
function chainResult(instance, obj) {
|
|
return instance._chain ? underscore(obj).chain() : obj;
|
|
}
|
|
|
|
module.exports = chainResult;
|