mirror of
https://github.com/stCarolas/setup-maven.git
synced 2025-01-04 01:18:10 +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;
|