Я работаю над решением упражнения «Отслеживание скальпеля» из Глава 11 книги Eloquent Javascript .В книге представлен модуль CommonJS для кода, связанного с главой: crow-tech.js
Ниже приведен код моего решения:
const ct = require('./crow-tech');
function storage(nest, name) {
return new Promise(resolve => {
nest.readStorage(name, result => resolve(result));
});
}
async function locateScalpel(nest) {
let place = await storage(nest, 'scalpel');
if (place === nest.name) {
return place;
} else if (place !== null) {
return await locateScalpel(place);
} else {
return null;
}
}
function locateScalpel2(nest) {
// Your code here.
}
locateScalpel(ct.bigOak).then(console.log);
// → Butcher Shop
Здесьct.bigOak
- это объект класса Node
, который содержит метод readStorage
.В изолированном тестировании с console.log
я вижу, что ct.bigOak
правильно импортирован и что ct.bigOak.readStorage
является функцией.Тем не менее, когда я запускаю приведенный выше код в Node, я получаю следующее сообщение об ошибке:
(node:5441) UnhandledPromiseRejectionWarning: TypeError: nest.readStorage is not a function
at resolve (/home/<username>/programming/js/eloquent-javascript/tracking-the-scalpel.js:5:10)
at new Promise (<anonymous>)
at storage (/home/<username>/programming/js/eloquent-javascript/tracking-the-scalpel.js:4:10)
at locateScalpel (/home/<username>/programming/js/eloquent-javascript/tracking-the-scalpel.js:10:23)
at locateScalpel (/home/<username>/programming/js/eloquent-javascript/tracking-the-scalpel.js:14:22)
(node:5441) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2)
(node:5441) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Есть ли какая-то проблема в процессе передачи ct.bigOak
в мои локальные функции, которая мешает методу readStorage
быть признанным?