Skip to content

methodOf

INFO

이 함수는 호환성을 위한 es-toolkit/compat 에서만 가져올 수 있어요. 대체할 수 있는 네이티브 JavaScript API가 있거나, 아직 충분히 최적화되지 않았기 때문이에요.

es-toolkit/compat에서 이 함수를 가져오면, lodash와 완전히 똑같이 동작해요.

주어진 경로에 있는 객체의 메서드를 제공된 파라미터로 호출하는 함수를 만들어요.

인터페이스

typescript
function methodOf(object: object, ...args: any[]): (path: PropertyKey | PropertyKey[]) => any;

파라미터

  • object (object): 조회할 객체.
  • args (...any): 메서드를 호출할 때 사용할 인수.

반환 값

((path: PropertyKey | PropertyKey[]) => any): 경로를 받아 objectpath에서 args로 메서드를 호출하는 새로운 함수.

예시

typescript
const object = {
  a: {
    b: function (x, y) {
      return x + y;
    },
  },
};

const add = methodOf(object, 1, 2);
console.log(add('a.b')); // => 3

MIT 라이선스에 따라 배포됩니다.