mirror of
https://github.com/stCarolas/setup-maven.git
synced 2025-02-10 16:59:55 +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;
|