ship-gis/node_modules/underscore/modules/_chainResult.js

7 lines
200 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
import _ from './underscore.js';
// Helper function to continue chaining intermediate results.
export default function chainResult(instance, obj) {
return instance._chain ? _(obj).chain() : obj;
}