mirror of
https://github.com/Azure/setup-helm.git
synced 2025-09-08 04:56:32 +00:00
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;
|