UNPKG

@restnfeel/agentc-starter-kit

Version:

한국어 기업용 CMS 모듈 - Task Master AI와 함께 빠르게 웹사이트를 구현할 수 있는 재사용 가능한 컴포넌트 시스템

14 lines (11 loc) 439 B
import isArrayLike from './_isArrayLike.js'; import findIndex from './findIndex.js'; import findKey from './findKey.js'; // Return the first value which passes a truth test. function find(obj, predicate, context) { var keyFinder = isArrayLike(obj) ? findIndex : findKey; var key = keyFinder(obj, predicate, context); if (key !== void 0 && key !== -1) return obj[key]; } export { find as default }; //# sourceMappingURL=find.js.map