Files
shoptime/com.twin.app.shoptime/src/utils/fp.js
djaco 2d11a7bae9 feat: 유틸리티 추가
🕐 커밋 시간: 2025. 08. 13. 13:27:54

📊 변경 통계:
  • 총 파일: 3개

📁 추가된 파일:
  + com.twin.app.shoptime/src/utils/fp.js
  + com.twin.app.shoptime/src/utils/lodash.js
  + com.twin.app.shoptime/src/utils/lodashFpEx.js

🔧 주요 변경 내용:
  • 공통 유틸리티 함수 최적화
2025-08-13 13:27:56 +09:00

13 lines
339 B
JavaScript

// FP bootstrap: use locally-extended lodash instance
// './lodash' already mixes in our custom extensions from './lodashFpEx'
import fp from './lodash';
export const {
pipe, flow, curry, compose,
map, filter, reduce, get, set,
isEmpty, isNotEmpty, isNil, isNotNil,
mapAsync, reduceAsync, filterAsync,
} = fp;
export default fp;