index.js 177 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 'use strict' module.exports = function createNotFoundError (path) { var err = new Error('Cannot find module \'' + path + '\'') err.code = 'MODULE_NOT_FOUND' return err }