mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-21 10:39:26 +08:00
a0f00e5017
Co-authored-by: OliverMKing <OliverMKing@users.noreply.github.com>
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;
|