Fix demo require path

This commit is contained in:
John Lees-Miller 2020-05-15 10:36:00 +01:00
parent 8af22ae878
commit 90494fd75f

View file

@ -1,5 +1,7 @@
// This is the code from the README.
const OError = require('..')
const demoDatabase = {
findUser(id, callback) {
process.nextTick(() => {
@ -36,8 +38,6 @@ sayHi1(43, (err, result) => {
}
})
const OError = require('.')
function sayHi2(userId, callback) {
demoDatabase.findUser(userId, (err, user) => {
if (err) return callback(OError.tag(err))