UNPKG

gtfs-utils

Version:
11 lines (8 loc) 197 B
'use strict' const isNotFoundError = (err) => ( err.code === 'ENOENT' || err.code === 'MODULE_NOT_FOUND' || err.notFound === true || err.statusCode === 404 ) module.exports = isNotFoundError