mirror of
https://github.com/stCarolas/setup-maven.git
synced 2025-01-04 01:18:10 +00:00
11 lines
221 B
JavaScript
11 lines
221 B
JavaScript
|
var underscore = require('./underscore.js');
|
||
|
|
||
|
// Start chaining a wrapped Underscore object.
|
||
|
function chain(obj) {
|
||
|
var instance = underscore(obj);
|
||
|
instance._chain = true;
|
||
|
return instance;
|
||
|
}
|
||
|
|
||
|
module.exports = chain;
|