setup-maven-cached/node_modules/underscore/amd/_chainResult.js

11 lines
246 B
JavaScript
Raw Permalink Normal View History

2022-06-28 16:39:30 +08:00
define(['./underscore'], function (underscore) {
// Helper function to continue chaining intermediate results.
function chainResult(instance, obj) {
return instance._chain ? underscore(obj).chain() : obj;
}
return chainResult;
});