mirror of
https://github.com/stCarolas/setup-maven.git
synced 2025-01-04 00:14:49 +00:00
7 lines
200 B
JavaScript
7 lines
200 B
JavaScript
import _ from './underscore.js';
|
|
|
|
// Helper function to continue chaining intermediate results.
|
|
export default function chainResult(instance, obj) {
|
|
return instance._chain ? _(obj).chain() : obj;
|
|
}
|