module.exports
// api.js
module.exports.findByOrderID = function (params) {
...
return this.findByElements(payload);
};
module.exports.findByElements = function (params, callback) {
...
};
export 해서 사용하던 findByElements
함수를 조회 레퍼런스 문서 별로(findByOrderID
, findByTaskID
...) 모듈화 하여 사용하기로 했다. 그 중에 하나인 findByTaskID
함수를 다른 컴포넌트에서 import하여 호출했는데 Uncaught ReferenceError: findByElements is not defined 에러가 발생한다.
// api.js
module.exports.findByOrderID = function (params) {
...
return findByElements(payload);
};
const findByElements = function (params, callback) {
...
};
이렇게 하면 작동하지만 findByElements
를 import하는 다른 컴포넌트에서 사용할 수 없게 된다.
module.exports = {
findByOrderID,
findByTaskID,
...
};
하단에서 외부에서 사용할 함수를 한 번에 export하면 된다.
throw "Array type for params is not supported";
// Expected an object to be thrown.eslintno-throw-literal
throw new Error("Array type for params is not supported");